HomeSort by relevance Sort by last modified time
    Searched refs:obstack_for_string (Results 1 - 7 of 7) sorted by null

  /external/bison/src/
flex-scanner.h 66 /* OBSTACK_FOR_STRING -- Used to store all the characters that we need to
77 static struct obstack obstack_for_string; variable in typeref:struct:obstack
80 obstack_grow (&obstack_for_string, yytext, yyleng)
84 obstack_1grow (&obstack_for_string, '\0'); \
85 last_string = obstack_finish (&obstack_for_string); \
89 obstack_free (&obstack_for_string, last_string)
scan-skel.l 83 obstack_grow (&obstack_for_string, yytext, yyleng);
85 obstack_finish (&obstack_for_string);
107 "@@" obstack_1grow (&obstack_for_string, '@');
108 "@{" obstack_1grow (&obstack_for_string, '[');
109 "@}" obstack_1grow (&obstack_for_string, ']');
117 obstack_1grow (&obstack_for_string, '\0');
119 obstack_finish (&obstack_for_string);
128 obstack_free (&obstack_for_string, at_directive_argv[0]);
163 obstack_init (&obstack_for_string);
173 obstack_free (&obstack_for_string, 0)
    [all...]
scan-code.l 189 obstack_escape (&obstack_for_string, yytext);
193 obstack_escape (&obstack_for_string, yytext);
204 obstack_sgrow (&obstack_for_string, ref_tail_fields);
211 obstack_sgrow (&obstack_for_string, ref_tail_fields);
233 obstack_1grow (&obstack_for_string, ';');
270 obstack_sgrow (&obstack_for_string, "]b4_dollar_dollar(");
271 obstack_quote (&obstack_for_string, type_name);
272 obstack_sgrow (&obstack_for_string, ")[");
276 obstack_sgrow (&obstack_for_string, "]b4_at_dollar[");
285 [$@\[\]] obstack_escape (&obstack_for_string, yytext)
    [all...]
scan-code.c     [all...]
scan-gram.l 272 obstack_grow (&obstack_for_string, yytext + 1, yyleng - 2);
534 obstack_1grow (&obstack_for_string, c);
544 obstack_1grow (&obstack_for_string, c);
547 \\a obstack_1grow (&obstack_for_string, '\a');
548 \\b obstack_1grow (&obstack_for_string, '\b');
549 \\f obstack_1grow (&obstack_for_string, '\f');
550 \\n obstack_1grow (&obstack_for_string, '\n');
551 \\r obstack_1grow (&obstack_for_string, '\r');
552 \\t obstack_1grow (&obstack_for_string, '\t');
553 \\v obstack_1grow (&obstack_for_string, '\v')
    [all...]
scan-skel.c 1061 obstack_grow (&obstack_for_string, skel_text, skel_leng);
1063 obstack_finish (&obstack_for_string);
1106 obstack_1grow (&obstack_for_string, '@');
1111 obstack_1grow (&obstack_for_string, '[');
1116 obstack_1grow (&obstack_for_string, ']');
1136 obstack_1grow (&obstack_for_string, '\0');
1138 obstack_finish (&obstack_for_string);
1147 obstack_free (&obstack_for_string, at_directive_argv[0]);
    [all...]
scan-gram.c     [all...]

Completed in 340 milliseconds