Home | History | Annotate | Download | only in src

Lines Matching refs:obstack_for_string

78 /* OBSTACK_FOR_STRING -- Used to store all the characters that we need to
87 static struct obstack obstack_for_string;
97 obstack_grow (&obstack_for_string, yytext, yyleng)
101 obstack_1grow (&obstack_for_string, '\0'); \
102 last_string = obstack_finish (&obstack_for_string); \
106 obstack_free (&obstack_for_string, last_string)
306 obstack_grow (&obstack_for_string, yytext + 1, yyleng - 2);
458 obstack_1grow (&obstack_for_string, c);
469 obstack_1grow (&obstack_for_string, c);
472 \\a obstack_1grow (&obstack_for_string, '\a');
473 \\b obstack_1grow (&obstack_for_string, '\b');
474 \\f obstack_1grow (&obstack_for_string, '\f');
475 \\n obstack_1grow (&obstack_for_string, '\n');
476 \\r obstack_1grow (&obstack_for_string, '\r');
477 \\t obstack_1grow (&obstack_for_string, '\t');
478 \\v obstack_1grow (&obstack_for_string, '\v');
481 \\("\""|"'"|"?"|"\\") obstack_1grow (&obstack_for_string, yytext[1]);
490 obstack_1grow (&obstack_for_string, c);
577 obstack_sgrow (&obstack_for_string, "{}");
616 obstack_1grow (&obstack_for_string, ';');
618 obstack_1grow (&obstack_for_string, '}');
641 obstack_sgrow (&obstack_for_string, "$][");
645 obstack_sgrow (&obstack_for_string, "@@");
693 \$ obstack_sgrow (&obstack_for_string, "$][");
694 \@ obstack_sgrow (&obstack_for_string, "@@");
695 \[ obstack_sgrow (&obstack_for_string, "@{");
696 \] obstack_sgrow (&obstack_for_string, "@}");
834 | Output to OBSTACK_FOR_STRING a reference to this semantic value. |
865 obstack_fgrow1 (&obstack_for_string,
885 obstack_fgrow3 (&obstack_for_string,
918 obstack_sgrow (&obstack_for_string, "]b4_dollar_dollar[");
933 | OBSTACK_FOR_STRING a reference to this location. |
946 obstack_sgrow (&obstack_for_string, "]b4_lhs_location[");
954 obstack_fgrow2 (&obstack_for_string, "]b4_rhs_location(%d, %d)[",
984 obstack_sgrow (&obstack_for_string, "]b4_at_dollar[");
1153 obstack_init (&obstack_for_string);
1164 obstack_free (&obstack_for_string, 0);