Lines Matching refs:maStack
109 inline bool empty() const { return maStack.empty(); } in empty()
123 ContextInfoVec maStack; member in oox::core::prv::ContextStack
135 return maStack.empty() ? -1 : maStack.back().first.mnStartRecId; in getCurrentRecId()
140 return !maStack.empty() && (maStack.back().first.mnEndRecId >= 0); in hasCurrentEndRecId()
145 if( !maStack.empty() ) in getCurrentContext()
146 return maStack.back().second; in getCurrentContext()
152 OSL_ENSURE( (rRecInfo.mnEndRecId >= 0) || maStack.empty() || hasCurrentEndRecId(), in pushContext()
154 maStack.push_back( ContextInfo( rRecInfo, rxContext ) ); in pushContext()
159 OSL_ENSURE( !maStack.empty(), "ContextStack::popContext - no context on stack" ); in popContext()
160 if( !maStack.empty() ) in popContext()
162 ContextInfo& rContextInfo = maStack.back(); in popContext()
165 maStack.pop_back(); in popContext()