Searched defs:operatorStackDepth (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/JavaScriptCore/parser/
H A DSyntaxChecker.h224 void operatorStackPop(int& operatorStackDepth) { operatorStackDepth--; } argument
229 void operatorStackAppend(int& operatorStackDepth, int, int) { operatorStackDepth++; } argument
H A DASTBuilder.h520 void operatorStackPop(int& operatorStackDepth) argument
522 operatorStackDepth--;
541 void operatorStackAppend(int& operatorStackDepth, int op, int precedence) argument
543 operatorStackDepth++;
H A DJSParser.cpp1656 int operatorStackDepth = 0; local
1673 while (operatorStackDepth && context.operatorStackHasHigherPrecedence(operatorStackDepth, precedence)) {
1679 context.appendBinaryOperation(operandStackDepth, operatorStackDepth, lhs, rhs);
1680 context.operatorStackPop(operatorStackDepth);
1682 context.operatorStackAppend(operatorStackDepth, operatorToken, precedence);
1684 while (operatorStackDepth) {
1690 context.appendBinaryOperation(operandStackDepth, operatorStackDepth, lhs, rhs);
1691 context.operatorStackPop(operatorStackDepth);

Completed in 76 milliseconds