Searched refs:operatorStackDepth (Results 1 - 3 of 3) sorted by relevance
/external/webkit/Source/JavaScriptCore/parser/ |
H A D | SyntaxChecker.h | 224 void operatorStackPop(int& operatorStackDepth) { operatorStackDepth--; } argument 229 void operatorStackAppend(int& operatorStackDepth, int, int) { operatorStackDepth++; } argument
|
H A D | JSParser.cpp | 1656 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);
|
H A D | ASTBuilder.h | 520 void operatorStackPop(int& operatorStackDepth) argument 522 operatorStackDepth--; 541 void operatorStackAppend(int& operatorStackDepth, int op, int precedence) argument 543 operatorStackDepth++;
|
Completed in 309 milliseconds