Lines Matching refs:NextChar
222 int NextChar = 0; in LexToken() local
229 NextChar = peekNextChar(i++); in LexToken()
230 } while (isdigit(NextChar)); in LexToken()
232 if (NextChar == 'x' || NextChar == 'b') { in LexToken()
240 if (NextChar == 'b') in LexToken()
247 if (NextChar == 'x') in LexToken()
254 if (isalpha(NextChar) || NextChar == '_') in LexToken()
628 int NextChar = *CurPtr; in prepIsDirective() local
632 if (NextChar != PreprocessorDirs[ID].Word[I]) { in prepIsDirective()
637 NextChar = peekNextChar(I + 1); in prepIsDirective()
647 if (NextChar == ' ' || NextChar == '\t' || NextChar == EOF || in prepIsDirective()
648 NextChar == '\n' || in prepIsDirective()
652 NextChar == '\r') in prepIsDirective()
667 if (NextChar == '/') { in prepIsDirective()
668 NextChar = peekNextChar(I + 1); in prepIsDirective()
670 if (NextChar == '*' || NextChar == '/') in prepIsDirective()
919 int NextChar = peekNextChar(1); in prepSkipLineBegin() local
920 if (NextChar == '*') { in prepSkipLineBegin()
970 int NextChar = peekNextChar(1); in prepSkipDirectiveEnd() local
971 if (NextChar == '/') { in prepSkipDirectiveEnd()
977 } else if (NextChar == '*') { in prepSkipDirectiveEnd()