Home
last modified time | relevance | path

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

/AOO41X/main/xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/formula/
H A DFormulaCompiler.java99 Stack evalStack = new Stack(); in RPN2Infix() local
107 evalStack.push(expr); in RPN2Infix()
111 args.push(evalStack.pop()); in RPN2Infix()
113 evalStack.push(makeExpression(pt, args)); in RPN2Infix()
116 return (Vector)evalStack.elementAt(0); in RPN2Infix()
130 Stack evalStack = new Stack(); in infix2RPN() local
138 evalStack.push(pt); in infix2RPN()
149 if (evalStack.isEmpty()) { in infix2RPN()
152 tmpTok = (Token)evalStack.pop(); in infix2RPN()
163 if (!evalStack.isEmpty()) { in infix2RPN()
[all …]