Home
last modified time | relevance | path

Searched refs:maContextStack (Results 1 – 5 of 5) sorted by relevance

/AOO41X/main/sax/source/fastparser/
H A Dfastparser.cxx220 if( rEntity.maContextStack.empty() ) in pushContext()
222 rEntity.maContextStack.push( SaxContextImplPtr( new SaxContextImpl ) ); in pushContext()
227 …rEntity.maContextStack.push( SaxContextImplPtr( new SaxContextImpl( rEntity.maContextStack.top() )… in pushContext()
236 …OSL_ENSURE( !rEntity.maContextStack.empty(), "sax::FastSaxParser::popContext(), pop without push?"… in popContext()
237 if( !rEntity.maContextStack.empty() ) in popContext()
238 rEntity.maContextStack.pop(); in popContext()
246 …OSL_ENSURE( !rEntity.maContextStack.empty(), "sax::FastSaxParser::DefineNamespace(), I need a cont… in DefineNamespace()
247 if( !rEntity.maContextStack.empty() ) in DefineNamespace()
249 sal_uInt32 nOffset = rEntity.maContextStack.top()->mnNamespaceCount++; in DefineNamespace()
285 sal_uInt32 nNamespace = rEntity.maContextStack.top()->mnNamespaceCount; in GetTokenWithPrefix()
[all …]
H A Dfastparser.hxx86 ::std::stack< SaxContextImplPtr > maContextStack;
/AOO41X/main/oox/source/core/
H A Dfilterdetect.cxx59 maContextStack.reserve( 2 ); in FilterDetectDocHandler()
92 if( !maContextStack.empty() && (maContextStack.back() == PR_TOKEN( Relationships )) ) in startFastElement()
100 if( !maContextStack.empty() && (maContextStack.back() == PC_TOKEN( Types )) ) in startFastElement()
104 if( !maContextStack.empty() && (maContextStack.back() == PC_TOKEN( Types )) ) in startFastElement()
108 maContextStack.push_back( nElement ); in startFastElement()
120 maContextStack.pop_back(); in endFastElement()
/AOO41X/main/filter/source/svg/
H A Dsvgwriter.hxx178 Stack maContextStack; member in SVGActionWriter
191 …SVGAttributeWriter* ImplAcquireContext() { maContextStack.Push( mpContext = new SVGAttributeWr… in ImplAcquireContext()
192 …Context() { delete (SVGAttributeWriter*) maContextStack.Pop(); mpContext = (SVGAttributeWriter*) m… in ImplReleaseContext()
/AOO41X/main/oox/inc/oox/core/
H A Dfilterdetect.hxx87 ContextVector maContextStack; member in oox::core::FilterDetectDocHandler