Lines Matching defs:NextChar
226 int NextChar = 0;
233 NextChar = peekNextChar(i++);
234 } while (isdigit(NextChar));
236 if (NextChar == 'x' || NextChar == 'b') {
244 if (NextChar == 'b')
251 if (NextChar == 'x')
258 if (isalpha(NextChar) || NextChar == '_')
645 int NextChar = *CurPtr;
649 if (NextChar != PD.Word[I]) {
654 NextChar = peekNextChar(I + 1);
664 if (NextChar == ' ' || NextChar == '\t' || NextChar == EOF ||
665 NextChar == '\n' ||
669 NextChar == '\r')
684 if (NextChar == '/') {
685 NextChar = peekNextChar(I + 1);
687 if (NextChar == '*' || NextChar == '/')
936 int NextChar = peekNextChar(1);
937 if (NextChar == '*') {
987 int NextChar = peekNextChar(1);
988 if (NextChar == '/') {
994 } else if (NextChar == '*') {