Home
last modified time | relevance | path

Searched refs:decl_spec (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/byacc/test/yacc/
H A Dgrammar.tab.c179 typedef struct decl_spec { struct
212 DeclSpec decl_spec; member
234 DeclSpec decl_spec; member
302 extern void put_body (FILE *outf, DeclSpec *decl_spec, Declarator *declarator);
1329 gen_declarations(&yystack.l_mark[-1].decl_spec, (DeclaratorList *)0); in YYPARSE_DECL()
1333 free_decl_spec(&yystack.l_mark[-1].decl_spec); in YYPARSE_DECL()
1342 set_param_types(func_params, &yystack.l_mark[-2].decl_spec, &yystack.l_mark[-1].decl_list); in YYPARSE_DECL()
1344 gen_declarations(&yystack.l_mark[-2].decl_spec, &yystack.l_mark[-1].decl_list); in YYPARSE_DECL()
1350 free_decl_spec(&yystack.l_mark[-2].decl_spec); in YYPARSE_DECL()
1358 cur_decl_spec_flags = yystack.l_mark[0].decl_spec.flags; in YYPARSE_DECL()
[all …]
/freebsd/contrib/byacc/test/btyacc/
H A Dgrammar.tab.c199 typedef struct decl_spec { struct
232 DeclSpec decl_spec; member
254 DeclSpec decl_spec; member
322 extern void put_body (FILE *outf, DeclSpec *decl_spec, Declarator *declarator);
2056 gen_declarations(&yystack.l_mark[-1].decl_spec, (DeclaratorList *)0); in YYPARSE_DECL()
2060 free_decl_spec(&yystack.l_mark[-1].decl_spec); in YYPARSE_DECL()
2069 set_param_types(func_params, &yystack.l_mark[-2].decl_spec, &yystack.l_mark[-1].decl_list); in YYPARSE_DECL()
2071 gen_declarations(&yystack.l_mark[-2].decl_spec, &yystack.l_mark[-1].decl_list); in YYPARSE_DECL()
2077 free_decl_spec(&yystack.l_mark[-2].decl_spec); in YYPARSE_DECL()
2085 cur_decl_spec_flags = yystack.l_mark[0].decl_spec.flags; in YYPARSE_DECL()
[all …]
H A Dbtyacc_demo.output25 13 decl_specs : decl_spec
26 14 | decl_specs $$2 decl_spec
31 17 decl_spec : cv_qual
151 decl_spec goto 13
158 decl_spec : EXTERN . (19)
164 decl_spec : REGISTER . (20)
170 decl_spec : STATIC . (21)
204 decl_specs : decl_specs . $$2 decl_spec (14)
230 decl_specs : decl_spec . (13)
236 decl_spec : typename . (18)
[all …]
/freebsd/contrib/byacc/test/
H A Dgrammar.y67 %type <decl_spec> decl_specifiers decl_specifier
68 %type <decl_spec> storage_class type_specifier type_qualifier
69 %type <decl_spec> struct_or_union_specifier enum_specifier
149 typedef struct decl_spec { struct
182 DeclSpec decl_spec; member
204 DeclSpec decl_spec; member
272 extern void put_body (FILE *outf, DeclSpec *decl_spec, Declarator *declarator);
531 DeclSpec decl_spec; variable
535 new_decl_spec(&decl_spec, dft_decl_spec(), $1->begin, DS_NONE);
537 gen_func_definition(&decl_spec, $1);
[all …]
H A Dbtyacc_demo.y62 %type <type> decl_specs(<scope>) decl_spec(<scope>) typename(<scope>)
121 decl_spec [ $$ = $1; ]
122 | decl_specs decl_spec($e) [ $$ = type_combine($1, $2); ]
129 decl_spec($e):