Home | History | Annotate | Download | only in animator

Lines Matching defs:nextChar

201 int SkScriptEngine::arithmeticOp(char ch, char nextChar, bool lastPush) {
224 if (nextChar == '>') {
229 if (nextChar == '=')
234 if (nextChar == '<') {
239 reverseOperands = nextChar == '=';
244 if (nextChar == '=') {
250 if (nextChar == '=') {
272 SkASSERT(nextChar != '&');
276 SkASSERT(nextChar != '|');
794 char nextChar = script[1];
795 int advance = logicalOp(ch, nextChar);
799 advance = arithmeticOp(ch, nextChar, lastPush);
1075 int SkScriptEngine::logicalOp(char ch, char nextChar) {
1093 if (nextChar != '&')
1099 if (nextChar != '|')