| /src/external/bsd/byacc/dist/test/yacc/ |
| grammar.tab.c | 181 typedef struct decl_spec { struct 214 DeclSpec decl_spec; member in struct:parameter 236 DeclSpec decl_spec; member in union:__anon6507 304 extern void put_body (FILE *outf, DeclSpec *decl_spec, Declarator *declarator); 1344 gen_declarations(&yystack.l_mark[-1].decl_spec, (DeclaratorList *)0); 1348 free_decl_spec(&yystack.l_mark[-1].decl_spec); 1357 set_param_types(func_params, &yystack.l_mark[-2].decl_spec, &yystack.l_mark[-1].decl_list); 1359 gen_declarations(&yystack.l_mark[-2].decl_spec, &yystack.l_mark[-1].decl_list); 1365 free_decl_spec(&yystack.l_mark[-2].decl_spec); 1373 cur_decl_spec_flags = yystack.l_mark[0].decl_spec.flags 1483 DeclSpec decl_spec; local [all...] |
| /src/external/bsd/byacc/dist/test/btyacc/ |
| grammar.tab.c | 201 typedef struct decl_spec { struct 234 DeclSpec decl_spec; member in struct:parameter 256 DeclSpec decl_spec; member in union:__anon6458 324 extern void put_body (FILE *outf, DeclSpec *decl_spec, Declarator *declarator); 2070 gen_declarations(&yystack.l_mark[-1].decl_spec, (DeclaratorList *)0); 2074 free_decl_spec(&yystack.l_mark[-1].decl_spec); 2083 set_param_types(func_params, &yystack.l_mark[-2].decl_spec, &yystack.l_mark[-1].decl_list); 2085 gen_declarations(&yystack.l_mark[-2].decl_spec, &yystack.l_mark[-1].decl_list); 2091 free_decl_spec(&yystack.l_mark[-2].decl_spec); 2099 cur_decl_spec_flags = yystack.l_mark[0].decl_spec.flags 2209 DeclSpec decl_spec; local [all...] |
| /src/external/bsd/byacc/dist/test/ |
| grammar.y | 69 %type <decl_spec> decl_specifiers decl_specifier 70 %type <decl_spec> storage_class type_specifier type_qualifier 71 %type <decl_spec> struct_or_union_specifier enum_specifier 151 typedef struct decl_spec { 184 DeclSpec decl_spec; 206 DeclSpec decl_spec; 274 extern void put_body (FILE *outf, DeclSpec *decl_spec, Declarator *declarator); 533 DeclSpec decl_spec; 537 new_decl_spec(&decl_spec, dft_decl_spec(), $1->begin, DS_NONE); 539 gen_func_definition(&decl_spec, $1) [all...] |
| btyacc_demo.y | 64 %type <type> decl_specs(<scope>) decl_spec(<scope>) typename(<scope>) 123 decl_spec [ $$ = $1; ] 124 | decl_specs decl_spec($e) [ $$ = type_combine($1, $2); ] 131 decl_spec($e):
|