Lines Matching refs:nextc
293 int nextc; in yylex() local
441 if ((nextc = getc(Fp)) == EOF) in yylex()
443 else if (nextc == '*') { in yylex()
461 (void) ungetc(nextc, Fp); in yylex()
496 if ((nextc = getc(Fp)) == '&') in yylex()
499 (void) ungetc(nextc, Fp); in yylex()
508 if ((nextc = getc(Fp)) == '|') in yylex()
511 (void) ungetc(nextc, Fp); in yylex()
520 if ((nextc = getc(Fp)) == '=') in yylex()
523 (void) ungetc(nextc, Fp); in yylex()
532 if ((nextc = getc(Fp)) == '=') in yylex()
535 (void) ungetc(nextc, Fp); in yylex()
544 if ((nextc = getc(Fp)) == '>') in yylex()
547 (void) ungetc(nextc, Fp); in yylex()
555 if ((nextc = getc(Fp)) == '=') in yylex()
558 else if (nextc == '<') in yylex()
562 (void) ungetc(nextc, Fp); in yylex()
570 if ((nextc = getc(Fp)) == '=') in yylex()
573 else if (nextc == '>') in yylex()
577 (void) ungetc(nextc, Fp); in yylex()