Home
last modified time | relevance | path

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

/openbsd-src/gnu/usr.bin/gcc/gcc/java/
H A Dparse-scan.y104 struct method_declarator { struct
111 (struct method_declarator *)xmalloc (sizeof (struct method_declarator)); \ argument
121 static void report_main_declaration PARAMS ((struct method_declarator *));
133 struct method_declarator *declarator;
205 %type <declarator> method_declarator
461 type method_declarator throws
463 | VOID_TK method_declarator throws
464 | modifiers type method_declarator throws
466 | modifiers VOID_TK method_declarator throws
473 method_declarator:
[all …]
H A Dparse-scan.c346 struct method_declarator { struct
353 (struct method_declarator *)xmalloc (sizeof (struct method_declarator)); \ argument
363 static void report_main_declaration PARAMS ((struct method_declarator *));
390 struct method_declarator *declarator;
2603 struct method_declarator *d; in yyparse()
2612 struct method_declarator *d; in yyparse()
3299 struct method_declarator *declarator; in report_main_declaration()
H A Dparse.y91 static tree method_declarator PARAMS ((tree, tree));
595 method_declarator method_header
1027 type method_declarator throws
1029 | VOID_TK method_declarator throws
1031 | modifiers type method_declarator throws
1033 | modifiers VOID_TK method_declarator throws
1062 method_declarator:
1066 $$ = method_declarator ($1, NULL_TREE);
1069 { $$ = method_declarator ($1, $3); }
1070 | method_declarator OSB_TK CSB_TK
[all …]
H A DChangeLog5195 (method_declarator): Return `error_mark_node' if bogus current
5598 (method_declarator): Use TREE_TYPE not TYPE_NAME on GET_CPC.
6440 (method_declarator): Use PURE_INNER_CLASS_DECP_P.
6441 (method_declarator): Fixed typo in comment.
6897 (method_declarator): Fixed comment. Insert alias initializer in
6965 (method_declarator): Propagate final argument flag.
7155 (method_declarator): Insert hidden this$<n> to anonymous class
7251 (method_declarator:): Set the number of formal parameter to 0 for
7424 check_modifiers_consistency, method_declarator,
8217 * parse-scan.y (current_class, package_name, method_declarator,
[all …]
H A Dparse.c331 static tree method_declarator PARAMS ((tree, tree));
3934 yyval.node = method_declarator (yyvsp[-2].node, NULL_TREE); in yyparse()
3940 { yyval.node = method_declarator (yyvsp[-3].node, yyvsp[-1].node); } in yyparse()
3957 {yyerror ("')' expected"); DRECOVER(method_declarator);} in yyparse()
4112 yyval.node = method_declarator (yyvsp[-2].node, NULL_TREE); in yyparse()
4118 { yyval.node = method_declarator (yyvsp[-3].node, yyvsp[-1].node); } in yyparse()
8517 method_declarator (id, list) in method_declarator() function