Searched refs:mxContextStack (Results 1 – 2 of 2) sorted by relevance
53 mxContextStack( new ContextStack ), in ContextHandler2Helper()61 mxContextStack( rParent.mxContextStack ), in ContextHandler2Helper()62 mnRootStackSize( rParent.mxContextStack->size() ), in ContextHandler2Helper()73 return mxContextStack->empty() ? XML_ROOT_CONTEXT : mxContextStack->back().mnElement; in getCurrentElement()78 if( (nCountBack < 0) || (mxContextStack->size() < static_cast< size_t >( nCountBack )) ) in getParentElement()80 return (mxContextStack->size() == static_cast< size_t >( nCountBack )) ? in getParentElement()81 XML_ROOT_CONTEXT : (*mxContextStack)[ mxContextStack->size() - nCountBack - 1 ].mnElement; in getParentElement()86 return mxContextStack->size() == mnRootStackSize + 1; in isRootElement()108 if( !mxContextStack->empty() ) in implCharacters()109 mxContextStack->back().maChars.append( rChars ); in implCharacters()[all …]
207 ContextStackRef mxContextStack; /// Stack of all processed elements. member in oox::core::ContextHandler2Helper