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