Lines Matching refs:fOpStack
129 *fOpStack.push() = (Op) kParen; in SkScriptEngine2()
288 *fOpStack.push() = (Op) kParen; in arithmeticOp()
312 compare = fOpStack.index(idx); in arithmeticOp()
326 *fOpStack.push() = (Op) (kLogicalNot | kArtificialOp); in arithmeticOp()
327 fOpStack.push(op); in arithmeticOp()
329 *fOpStack.push() = (Op) (kFlipOps | kArtificialOp); in arithmeticOp()
443 *fOpStack.push() = (Op) kParen; in functionParams()
454 fOpStack.pop(); // pop paren in functionParams()
477 int opBalance = fOpStack.count(); in innerScript()
724 while (fOpStack.count() > opBalance) { // leave open paren in innerScript()
774 *fOpStack.push() = (Op) kParen; in handleArrayIndexer()
799 fOpStack.pop(); // pop paren in handleArrayIndexer()
827 fOpStack.pop(); in handleFunction()
952 while (gPrecedence[fOpStack.top() & ~kArtificialOp] < precedence) in logicalOp()
980 SkASSERT(fOpStack.count() > 1 && fOpStack.top() == op); // !!! add error handling in processLogicalOp()
982 fOpStack.pop(); in processLogicalOp()
1010 Branch branch(op, fOpStack.count(), getTokenOffset()); in processLogicalOp()
1025 SkASSERT(branch.fOpStackDepth == fOpStack.count()); in processLogicalOp()
1046 Branch branch(op, fOpStack.count(), getTokenOffset()); in processLogicalOp()
1060 fOpStack.pop(&op); in processOp()
1078 fOpStack.pop(&op); in processOp()