Lines Matching refs:nextChar
212 int SkScriptEngine2::arithmeticOp(char ch, char nextChar, bool lastPush) { in arithmeticOp() argument
235 if (nextChar == '>') { in arithmeticOp()
240 if (nextChar == '=') in arithmeticOp()
245 if (nextChar == '<') { in arithmeticOp()
250 reverseOperands = nextChar == '='; in arithmeticOp()
255 if (nextChar == '=') { in arithmeticOp()
261 if (nextChar == '=') { in arithmeticOp()
283 SkASSERT(nextChar != '&'); in arithmeticOp()
287 SkASSERT(nextChar != '|'); in arithmeticOp()
673 char nextChar = script[1]; in innerScript() local
674 int advance = logicalOp(ch, nextChar); in innerScript()
676 advance = arithmeticOp(ch, nextChar, lastPush); in innerScript()
907 int SkScriptEngine2::logicalOp(char ch, char nextChar) { in logicalOp() argument
925 if (nextChar != '&') in logicalOp()
931 if (nextChar != '|') in logicalOp()