Searched refs:obstack_for_string (Results 1 – 8 of 8) sorted by relevance
/external/bison/src/ |
D | 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);
|
D | flex-scanner.h | 77 static struct obstack obstack_for_string; variable 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)
|
D | 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 …]
|
D | 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 …]
|
D | scan-code.c | 1223 obstack_escape (&obstack_for_string, code_text); 1231 obstack_escape (&obstack_for_string, code_text); 1245 obstack_sgrow (&obstack_for_string, ref_tail_fields); 1256 obstack_sgrow (&obstack_for_string, ref_tail_fields); 1289 obstack_1grow (&obstack_for_string, ';'); 1354 obstack_sgrow (&obstack_for_string, "]b4_dollar_dollar("); 1355 obstack_quote (&obstack_for_string, type_name); 1356 obstack_sgrow (&obstack_for_string, ")["); 1364 obstack_sgrow (&obstack_for_string, "]b4_at_dollar["); 1375 obstack_escape (&obstack_for_string, code_text); [all …]
|
D | scan-gram.c | 1802 obstack_grow (&obstack_for_string, gram_text + 1, gram_leng - 2); 2140 obstack_1grow (&obstack_for_string, c); 2153 obstack_1grow (&obstack_for_string, c); 2159 obstack_1grow (&obstack_for_string, '\a'); 2164 obstack_1grow (&obstack_for_string, '\b'); 2169 obstack_1grow (&obstack_for_string, '\f'); 2174 obstack_1grow (&obstack_for_string, '\n'); 2179 obstack_1grow (&obstack_for_string, '\r'); 2184 obstack_1grow (&obstack_for_string, '\t'); 2189 obstack_1grow (&obstack_for_string, '\v'); [all …]
|
D | 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]); 2283 obstack_init (&obstack_for_string); in scan_skel() 2293 obstack_free (&obstack_for_string, 0); in skel_scanner_free()
|
/external/bison/ |
D | ChangeLog-2012 | 5783 obstack_for_string from flex-scanner.h. 5796 directive args (using the new obstack_for_string), to decode the 5803 (scan_skel): Initialize obstack_for_string on the first call. 5804 (skel_scanner_free): New function to free obstack_for_string. 7398 definitions so gcc won't warn when obstack_for_string is unused. 8216 (obstack_for_string, STRING_GROW, STRING_FINISH, STRING_FREE): 14145 * src/scan-gram.l (obstack_for_string): Renamed from string_obstack.
|