Searched refs:nOpIndex (Results 1 – 1 of 1) sorted by relevance
/trunk/main/oox/source/xls/ |
H A D | formulaparser.cxx | 482 size_t getOperandSize( size_t nOpCountFromEnd, size_t nOpIndex ) const; 486 …ApiToken& getOperandToken( size_t nOpCountFromEnd, size_t nOpIndex, size_t nTokenIndex ); 487 void removeOperand( size_t nOpCountFromEnd, size_t nOpIndex ); 740 size_t FormulaParserImpl::getOperandSize( size_t nOpCountFromEnd, size_t nOpIndex ) const in getOperandSize() 742 OSL_ENSURE( (nOpIndex < nOpCountFromEnd) && (nOpCountFromEnd <= maOperandSizeStack.size()), in getOperandSize() 744 return maOperandSizeStack[ maOperandSizeStack.size() - nOpCountFromEnd + nOpIndex ]; in getOperandSize() 762 OSL_ENSURE( getOperandSize( nOpCountFromEnd, nOpIndex ) > nTokenIndex, in getOperandToken() 770 void FormulaParserImpl::removeOperand( size_t nOpCountFromEnd, size_t nOpIndex ) in removeOperand() argument 772 OSL_ENSURE( (nOpIndex < nOpCountFromEnd) && (nOpCountFromEnd <= maOperandSizeStack.size()), in removeOperand() 776 SizeTypeVector::iterator aSizeIt = aSizeEnd - nOpCountFromEnd + nOpIndex; in removeOperand() [all …]
|
Completed in 33 milliseconds