Searched refs:maOperandSizeStack (Results 1 – 1 of 1) sorted by relevance
574 SizeTypeVector maOperandSizeStack; /// Stack with token sizes per operand. member in oox::xls::FormulaParserImpl596 maOperandSizeStack.reserve( 256 ); in FormulaParserImpl()660 maOperandSizeStack.clear(); in initializeImport()742 OSL_ENSURE( (nOpIndex < nOpCountFromEnd) && (nOpCountFromEnd <= maOperandSizeStack.size()), in getOperandSize()744 return maOperandSizeStack[ maOperandSizeStack.size() - nOpCountFromEnd + nOpIndex ]; in getOperandSize()749 maOperandSizeStack.push_back( nSize ); in pushOperandSize()754 OSL_ENSURE( !maOperandSizeStack.empty(), "FormulaParserImpl::popOperandSize - invalid call" ); in popOperandSize()755 size_t nOpSize = maOperandSizeStack.back(); in popOperandSize()756 maOperandSizeStack.pop_back(); in popOperandSize()765 …for( SizeTypeVector::const_iterator aEnd = maOperandSizeStack.end(), aIt = aEnd - nOpCountFromEnd … in getOperandToken()[all …]