Home
last modified time | relevance | path

Searched refs:yyInput (Results 1 – 3 of 3) sorted by relevance

/src/usr.sbin/fifolog/lib/
H A Dgetdate.y70 static char *yyInput; variable
773 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 …]
/src/usr.bin/find/
H A Dgetdate.y94 static char *yyInput; variable
770 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 …]
/src/crypto/krb5/src/kadmin/cli/
H A Dgetdate.y148 static char *yyInput; variable
787 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 …]