Lines Matching refs:mpContext

316         WebDAVContext*                              mpContext;  member in __anondc2fdb9d0411::WebDAVResponseParser
348 return mpContext && mpContext->getWhiteSpace().getLength(); in whitespaceIsAvailable()
352 …return mpContext && mpContext->getParent() && aWebDAVName == mpContext->getParent()->getWebDAVName… in hasParent()
376 if(mpContext) in pop_context()
378 WebDAVContext* pTemp = mpContext; in pop_context()
379 mpContext = mpContext->getParent(); in pop_context()
412 mpContext(0), in WebDAVResponseParser()
438 OSL_ENSURE(!mpContext, "Parser destructed with existing content (!)"); in ~WebDAVResponseParser()
439 while(mpContext) in ~WebDAVResponseParser()
447 OSL_ENSURE(!mpContext, "Parser start with existing content (!)"); in startDocument()
452 OSL_ENSURE(!mpContext, "Parser end with existing content (!)"); in endDocument()
463 mpContext = new WebDAVContext(mpContext, aName, xAttribs); in startElement()
472 switch(mpContext->getWebDAVNamespace()) in startElement()
480 switch(mpContext->getWebDAVName()) in startElement()
574 OSL_ENSURE(mpContext, "Parser EndElement without content (!)"); in endElement()
576 if(mpContext && nLen) in endElement()
582 maPropStatNames.push_back(mpContext->getNamespace() + mpContext->getName()); in endElement()
586 switch(mpContext->getWebDAVNamespace()) in endElement()
594 switch(mpContext->getWebDAVName()) in endElement()
607 maHrefLocks = mpContext->getWhiteSpace(); in endElement()
611 maHref = mpContext->getWhiteSpace(); in endElement()
621 maStatus = mpContext->getWhiteSpace(); in endElement()
634 aDAVPropertyValue.Value <<= mpContext->getWhiteSpace(); in endElement()
648 aDAVPropertyValue.Value <<= mpContext->getWhiteSpace(); in endElement()
686 aDAVPropertyValue.Value <<= mpContext->getWhiteSpace(); in endElement()
700 aDAVPropertyValue.Value <<= mpContext->getWhiteSpace(); in endElement()
823 … ::rtl::OUString aStr( mpContext->getWhiteSpace().toAsciiLowerCase()); in endElement()
846 maLockOwner = mpContext->getWhiteSpace(); in endElement()
856 ::rtl::OUString aStr( mpContext->getWhiteSpace() ); in endElement()
946 OSL_ENSURE(mpContext, "Parser characters without content (!)"); in characters()
949 if(mpContext && nLen) in characters()
956 ::rtl::OUString aNew(mpContext->getWhiteSpace()); in characters()
965 mpContext->setWhiteSpace(aNew); in characters()