Searched refs:yyInput (Results 1 – 3 of 3) sorted by relevance
70 static char *yyInput; variable773 while (isspace(*yyInput)) in yylex()774 yyInput++; in yylex()776 if (isdigit(c = *yyInput) || c == '-' || c == '+') { in yylex()779 if (!isdigit(*++yyInput)) in yylex()785 for (yylval.Number = 0; isdigit(c = *yyInput++); ) in yylex()787 yyInput--; in yylex()793 for (p = buff; isalpha(c = *yyInput++) || c == '.'; ) in yylex()797 yyInput--; in yylex()801 return *yyInput++; in yylex()[all …]
94 static char *yyInput; variable770 while (isspace(*yyInput)) in yylex()771 yyInput++; in yylex()773 if (isdigit(c = *yyInput) || c == '-' || c == '+') { in yylex()776 if (!isdigit(*++yyInput)) in yylex()782 for (yylval.Number = 0; isdigit(c = *yyInput++); ) in yylex()784 yyInput--; in yylex()790 for (p = buff; isalpha(c = *yyInput++) || c == '.'; ) in yylex()794 yyInput--; in yylex()798 return *yyInput++; in yylex()[all …]
148 static char *yyInput; variable787 while (isspace((int) *yyInput)) in yylex()788 yyInput++; in yylex()790 c = *yyInput; in yylex()794 if (!isdigit((int) (*++yyInput))) in yylex()800 for (yylval.Number = 0; isdigit((int) (c = *yyInput++)); ) in yylex()802 yyInput--; in yylex()808 for (p = buff; isalpha((int) (c = *yyInput++)) || c == '.'; ) in yylex()812 yyInput--; in yylex()816 return *yyInput++; in yylex()[all …]