Home
last modified time | relevance | path

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

/external/bison/src/
Dscan-gram.l87 static struct obstack obstack_for_string; variable
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');
[all …]
Dscan-gram.c948 static struct obstack obstack_for_string; variable
958 obstack_grow (&obstack_for_string, gram_text, gram_leng)
962 obstack_1grow (&obstack_for_string, '\0'); \
963 last_string = obstack_finish (&obstack_for_string); \
967 obstack_free (&obstack_for_string, last_string)
1701 obstack_grow (&obstack_for_string, gram_text + 1, gram_leng - 2);
1916 obstack_1grow (&obstack_for_string, c);
1930 obstack_1grow (&obstack_for_string, c);
1936 obstack_1grow (&obstack_for_string, '\a');
1941 obstack_1grow (&obstack_for_string, '\b');
[all …]
/external/bison/
DChangeLog5884 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.