Home
last modified time | relevance | path

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

/aoo4110/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()
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()
163 if (!evalStack.isEmpty()) { in infix2RPN()
177 while (!evalStack.isEmpty()) { in infix2RPN()
180 rpnExpr.add(evalStack.pop()); in infix2RPN()
[all …]

Completed in 16 milliseconds