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

/macosx-10.10.1/JavaScriptCore-7600.1.17/parser/
H A DSyntaxChecker.h249 void operatorStackPop(int& operatorStackDepth) { operatorStackDepth--; } argument
254 void operatorStackAppend(int& operatorStackDepth, int, int) { operatorStackDepth++; } argument
H A DParser.cpp1673 int operatorStackDepth = 0; local
1691 while (operatorStackDepth && context.operatorStackHasHigherPrecedence(operatorStackDepth, precedence)) {
1697 context.appendBinaryOperation(location, operandStackDepth, operatorStackDepth, lhs, rhs);
1698 context.operatorStackPop(operatorStackDepth);
1700 context.operatorStackAppend(operatorStackDepth, operatorToken, precedence);
1702 while (operatorStackDepth) {
1708 context.appendBinaryOperation(location, operandStackDepth, operatorStackDepth, lhs, rhs);
1709 context.operatorStackPop(operatorStackDepth);
H A DASTBuilder.h576 void operatorStackPop(int& operatorStackDepth) argument
578 operatorStackDepth--;
597 void operatorStackAppend(int& operatorStackDepth, int op, int precedence) argument
599 operatorStackDepth++;

Completed in 172 milliseconds