Home
last modified time | relevance | path

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

/trunk/main/oox/source/xls/
H A Dformulaparser.cxx574 SizeTypeVector maOperandSizeStack; /// Stack with token sizes per operand. member in oox::xls::FormulaParserImpl
596 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 …]