Home
last modified time | relevance | path

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

/external/skia/src/animator/
DSkScript.cpp196 *fOpStack.push() = kParen; in SkScriptEngine()
276 *fOpStack.push() = kParen; // push even if eval is suppressed in arithmeticOp()
301 compare = fOpStack.index(idx); in arithmeticOp()
316 *fOpStack.push() = (SkOp) (kLogicalNot | kArtificialOp); in arithmeticOp()
317 fOpStack.push(op); in arithmeticOp()
319 *fOpStack.push() = (SkOp) (kFlipOps | kArtificialOp); in arithmeticOp()
497 *fOpStack.push() = kParen; in functionParams()
512 fOpStack.pop(); // pop paren in functionParams()
530 int opBalance = fOpStack.count(); in innerScript()
819 while (fOpStack.count() > opBalance) { // leave open paren in innerScript()
[all …]
DSkScriptTokenizer.cpp121 *fOpStack.push() = (Op) kParen; in SkScriptEngine2()
280 *fOpStack.push() = (Op) kParen; in arithmeticOp()
304 compare = fOpStack.index(idx); in arithmeticOp()
318 *fOpStack.push() = (Op) (kLogicalNot | kArtificialOp); in arithmeticOp()
319 fOpStack.push(op); in arithmeticOp()
321 *fOpStack.push() = (Op) (kFlipOps | kArtificialOp); in arithmeticOp()
435 *fOpStack.push() = (Op) kParen; in functionParams()
446 fOpStack.pop(); // pop paren in functionParams()
469 int opBalance = fOpStack.count(); in innerScript()
717 while (fOpStack.count() > opBalance) { // leave open paren in innerScript()
[all …]
DSkScript.h234 SkIntArray(SkOp) fOpStack;
240 SkTDStack<SkOp> fOpStack; variable
DSkScript2.h249 SkTDStack<Op> fOpStack; variable