Home
last modified time | relevance | path

Searched refs:unget_char (Results 1 – 4 of 4) sorted by relevance

/external/bison/tests/
Dcalc.at113 static void unget_char (]AT_YYLEX_PRE_FORMALS[ int c);
137 unget_char (]AT_YYLEX_PRE_FORMALS[ int c)
167 unget_char (]AT_YYLEX_PRE_ARGS[ c);
195 unget_char (]AT_YYLEX_PRE_ARGS[ c);
Dnamed-refs.at93 static void unget_char (int c)
113 unget_char ( c);
127 unget_char ( c);
Dtestsuite60130 static void unget_char ( int c);
60143 unget_char ( int c)
60170 unget_char ( c);
60195 unget_char ( c);
61488 unget_char ( c);
61515 unget_char ( c);
67806 unget_char (lvalp, llocp, c);
67833 unget_char (lvalp, llocp, c);
69078 unget_char (lvalp, llocp, c);
69105 unget_char (lvalp, llocp, c);
[all …]
/external/mksh/src/
Dedit.c993 static int unget_char = -1; variable
2839 unget_char = c < 0 ? -1 : (c & 255); in x_e_ungetc()
2847 if (unget_char >= 0) { in x_e_getc()
2848 c = unget_char; in x_e_getc()
2849 unget_char = -1; in x_e_getc()