Home
last modified time | relevance | path

Searched refs:rEntity (Results 1 – 2 of 2) sorted by relevance

/AOO42X/main/sax/source/fastparser/
H A Dfastparser.cxx219 Entity& rEntity = getEntity(); in pushContext() local
220 if( rEntity.maContextStack.empty() ) in pushContext()
222 rEntity.maContextStack.push( SaxContextImplPtr( new SaxContextImpl ) ); in pushContext()
227rEntity.maContextStack.push( SaxContextImplPtr( new SaxContextImpl( rEntity.maContextStack.top() )… in pushContext()
235 Entity& rEntity = getEntity(); in popContext() local
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()
245 Entity& rEntity = getEntity(); in DefineNamespace() local
246 …OSL_ENSURE( !rEntity.maContextStack.empty(), "sax::FastSaxParser::DefineNamespace(), I need a cont… in DefineNamespace()
[all …]
H A Dfastparser.hxx126 inline void pushEntity( const Entity& rEntity ) { maEntities.push( rEntity ); } in pushEntity() argument