Home | History | Annotate | Download | only in animator

Lines Matching refs:nextChar

208 int SkScriptEngine::arithmeticOp(char ch, char nextChar, bool lastPush) {
231 if (nextChar == '>') {
236 if (nextChar == '=')
241 if (nextChar == '<') {
246 reverseOperands = nextChar == '=';
251 if (nextChar == '=') {
257 if (nextChar == '=') {
279 SkASSERT(nextChar != '&');
283 SkASSERT(nextChar != '|');
801 char nextChar = script[1];
802 int advance = logicalOp(ch, nextChar);
806 advance = arithmeticOp(ch, nextChar, lastPush);
1082 int SkScriptEngine::logicalOp(char ch, char nextChar) {
1100 if (nextChar != '&')
1106 if (nextChar != '|')