Lines Matching defs:NextChar
261 int NextChar = 0;
268 NextChar = peekNextChar(i++);
269 } while (isDigit(NextChar));
271 if (NextChar == 'x' || NextChar == 'b') {
279 if (NextChar == 'b')
286 if (NextChar == 'x')
293 if (isValidIDChar(NextChar, /*First=*/true))
679 int NextChar = peekNextChar(Word.size());
686 if (NextChar == ' ' || NextChar == '\t' || NextChar == EOF ||
687 NextChar == '\n' ||
691 NextChar == '\r')
706 if (NextChar == '/') {
707 NextChar = peekNextChar(Word.size() + 1);
709 if (NextChar == '*' || NextChar == '/')
937 int NextChar = peekNextChar(1);
938 if (NextChar == '*') {
988 int NextChar = peekNextChar(1);
989 if (NextChar == '/') {
995 } else if (NextChar == '*') {