Home | History | Annotate | Download | only in animator

Lines Matching defs:nextChar

220 int SkScriptEngine2::arithmeticOp(char ch, char nextChar, bool lastPush) {
243 if (nextChar == '>') {
248 if (nextChar == '=')
253 if (nextChar == '<') {
258 reverseOperands = nextChar == '=';
263 if (nextChar == '=') {
269 if (nextChar == '=') {
291 SkASSERT(nextChar != '&');
295 SkASSERT(nextChar != '|');
682 char nextChar = script[1];
683 int advance = logicalOp(ch, nextChar);
685 advance = arithmeticOp(ch, nextChar, lastPush);
917 int SkScriptEngine2::logicalOp(char ch, char nextChar) {
935 if (nextChar != '&')
941 if (nextChar != '|')