Lines Matching refs:nextChar
220 int SkScriptEngine2::arithmeticOp(char ch, char nextChar, bool lastPush) { in arithmeticOp() argument
243 if (nextChar == '>') { in arithmeticOp()
248 if (nextChar == '=') in arithmeticOp()
253 if (nextChar == '<') { in arithmeticOp()
258 reverseOperands = nextChar == '='; in arithmeticOp()
263 if (nextChar == '=') { in arithmeticOp()
269 if (nextChar == '=') { in arithmeticOp()
291 SkASSERT(nextChar != '&'); in arithmeticOp()
295 SkASSERT(nextChar != '|'); in arithmeticOp()
680 char nextChar = script[1]; in innerScript() local
681 int advance = logicalOp(ch, nextChar); in innerScript()
683 advance = arithmeticOp(ch, nextChar, lastPush); in innerScript()
915 int SkScriptEngine2::logicalOp(char ch, char nextChar) { in logicalOp() argument
933 if (nextChar != '&') in logicalOp()
939 if (nextChar != '|') in logicalOp()