| /freebsd-13.1/contrib/byacc/test/btyacc/ |
| H A D | btyacc_demo.output | 54 32 declarator : '(' $$6 $$7 declarator ')' 265 declarator : '(' . $$6 $$7 declarator ')' (32) 291 declarator : declarator . '[' $$4 expr ']' (34) 365 declarator : '(' $$6 . $$7 declarator ')' (32) 398 declarator : declarator '[' . $$4 expr ']' (34) 444 declarator : '(' $$6 $$7 . declarator ')' (32) 491 declarator : declarator '[' $$4 . expr ']' (34) 535 declarator : '(' $$6 $$7 declarator . ')' (32) 536 declarator : declarator . '[' $$4 expr ']' (34) 631 declarator : declarator '[' $$4 expr . ']' (34) [all …]
|
| H A D | grammar.tab.c | 2443 yyval.declarator = yystack.l_mark[0].declarator; in YYPARSE_DECL() 2460 yyval.declarator = yystack.l_mark[-1].declarator; in YYPARSE_DECL() 2470 yyval.declarator = yystack.l_mark[-1].declarator; in YYPARSE_DECL() 2482 …yyval.declarator->head = (yystack.l_mark[-3].declarator->func_stack == NULL) ? yyval.declarator : … in YYPARSE_DECL() 2492 …yyval.declarator->head = (yystack.l_mark[-3].declarator->func_stack == NULL) ? yyval.declarator : … in YYPARSE_DECL() 2618 yyval.declarator = yystack.l_mark[0].declarator; in YYPARSE_DECL() 2628 yyval.declarator = yystack.l_mark[-1].declarator; in YYPARSE_DECL() 2638 yyval.declarator = yystack.l_mark[-1].declarator; in YYPARSE_DECL() 2656 …yyval.declarator->head = (yystack.l_mark[-3].declarator->func_stack == NULL) ? yyval.declarator : … in YYPARSE_DECL() 2678 yyval.declarator->head = yyval.declarator; in YYPARSE_DECL() [all …]
|
| H A D | grammar.output | 208 declarator goto 41 242 declarator goto 57 626 declarator goto 71 820 declarator goto 41 1472 declarator goto 110 1516 declarator goto 110 1686 declarator goto 118 1769 declarator goto 126 1865 declarator goto 57 2152 declarator goto 148 [all …]
|
| H A D | grammar.dot | 122 …q110 [label="110:\l init_declarator -> declarator . { ',' ';' }\l init_declarator -> declarator … 204 q0 -> q41 [label="declarator"]; 224 q2 -> q57 [label="declarator"]; 277 q34 -> q71 [label="declarator"]; 343 q48 -> q41 [label="declarator"]; 593 q87 -> q110 [label="declarator"]; 606 q92 -> q110 [label="declarator"]; 723 q99 -> q118 [label="declarator"]; 741 q109 -> q126 [label="declarator"]; 789 q116 -> q57 [label="declarator"]; [all …]
|
| /freebsd-13.1/contrib/byacc/test/yacc/ |
| H A D | grammar.tab.c | 1716 yyval.declarator = yystack.l_mark[0].declarator; in YYPARSE_DECL() 1733 yyval.declarator = yystack.l_mark[-1].declarator; in YYPARSE_DECL() 1743 yyval.declarator = yystack.l_mark[-1].declarator; in YYPARSE_DECL() 1755 …yyval.declarator->head = (yystack.l_mark[-3].declarator->func_stack == NULL) ? yyval.declarator : … in YYPARSE_DECL() 1765 …yyval.declarator->head = (yystack.l_mark[-3].declarator->func_stack == NULL) ? yyval.declarator : … in YYPARSE_DECL() 1891 yyval.declarator = yystack.l_mark[0].declarator; in YYPARSE_DECL() 1901 yyval.declarator = yystack.l_mark[-1].declarator; in YYPARSE_DECL() 1911 yyval.declarator = yystack.l_mark[-1].declarator; in YYPARSE_DECL() 1929 …yyval.declarator->head = (yystack.l_mark[-3].declarator->func_stack == NULL) ? yyval.declarator : … in YYPARSE_DECL() 1951 yyval.declarator->head = yyval.declarator; in YYPARSE_DECL() [all …]
|
| H A D | grammar.output | 35 23 declarator_list : declarator 208 declarator goto 41 242 declarator goto 57 626 declarator goto 71 820 declarator goto 41 1472 declarator goto 110 1516 declarator goto 110 1686 declarator goto 118 1769 declarator goto 126 1865 declarator goto 57 [all …]
|
| H A D | grammar.dot | 122 …q110 [label="110:\l init_declarator -> declarator . { ',' ';' }\l init_declarator -> declarator … 204 q0 -> q41 [label="declarator"]; 224 q2 -> q57 [label="declarator"]; 277 q34 -> q71 [label="declarator"]; 343 q48 -> q41 [label="declarator"]; 593 q87 -> q110 [label="declarator"]; 606 q92 -> q110 [label="declarator"]; 723 q99 -> q118 [label="declarator"]; 741 q109 -> q126 [label="declarator"]; 789 q116 -> q57 [label="declarator"]; [all …]
|
| /freebsd-13.1/contrib/byacc/test/ |
| H A D | btyacc_demo.y | 61 %type <decl> declarator(<scope>, <type>) formal_arg(<scope>) 110 | decl_specs declarator($e,$1) block_statement(start_fn_def($e, $2)) 143 declarator_list ',' declarator($e, $t) 144 | declarator 147 declarator($e, $t): in declarator() function 151 | '(' declarator($e, $t) ')' { $$ = $2; } 152 | '*' cv_quals declarator($e, $t) %prec PREFIX 154 | declarator '[' expr($e) ']' 156 | declarator '(' formal_arg_list($e) ')' cv_quals 168 decl_specs declarator($e,$1) { $$ = $2; } in formal_arg()
|
| H A D | grammar.y | 71 %type <declarator> init_declarator declarator direct_declarator 183 Declarator *declarator; member 207 Declarator *declarator; member 459 : declarator 483 : decl_specifiers declarator 519 | declarator 723 : declarator 732 | declarator '=' 778 declarator 796 | '(' declarator ')' [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaType.cpp | 161 Declarator &declarator; member in __anonc95f0a4b0111::TypeProcessingState 201 : sema(sema), declarator(declarator), in TypeProcessingState() 210 return declarator; in getDeclarator() 1448 declarator.setInvalidType(true); in ConvertDeclSpecToType() 1559 declarator.setInvalidType(true); in ConvertDeclSpecToType() 1570 declarator.setInvalidType(true); in ConvertDeclSpecToType() 1599 declarator.setInvalidType(true); in ConvertDeclSpecToType() 1717 declarator.setInvalidType(true); in ConvertDeclSpecToType() 1725 declarator.setInvalidType(); in ConvertDeclSpecToType() 1742 declarator.setInvalidType(); in ConvertDeclSpecToType() [all …]
|
| /freebsd-13.1/cddl/contrib/opensolaris/lib/libdtrace/common/ |
| H A D | dt_grammar.y | 171 %type <l_decl> declarator 248 DT_KEY_INLINE declaration_specifiers declarator 721 declarator { 746 declarator { dt_decl_member(NULL); } 748 | declarator DT_TOK_COLON constant_expression { 776 declarator: direct_declarator 782 | lparen declarator DT_TOK_RPAR { $$ = $2; } 819 | parameter_declaration_specifiers declarator {
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseObjc.cpp | 1271 Declarator declarator(declSpec, context); in ParseObjCTypeName() local 1272 ParseDeclarator(declarator); in ParseObjCTypeName() 1275 if (!declarator.isInvalidType()) { in ParseObjCTypeName() 1279 addContextSensitiveTypeNullability(*this, declarator, in ParseObjCTypeName() 1284 TypeResult type = Actions.ActOnTypeName(getCurScope(), declarator); in ParseObjCTypeName() 1291 takeDeclAttributes(*paramAttrs, declarator); in ParseObjCTypeName()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | DiagnosticParseKinds.td | 153 "qualifiers after comma in declarator list are ignored">, 167 "'_Noreturn' keyword must precede function declarator">; 219 "expected function body after function declarator">; 239 "expected ';' after top level declarator">; 372 def err_missing_param : Error<"expected parameter declarator">; 966 …"%select{'mutable'|'constexpr'|'consteval'}0 cannot appear multiple times in a lambda declarator">; 1344 "expected declarator on 'omp declare mapper' directive">;
|
| H A D | DiagnosticCommonKinds.td | 82 "invalid storage class specifier in function declarator">;
|
| H A D | DiagnosticSemaKinds.td | 347 "redundant parentheses surrounding declarator">, 418 def err_declarator_need_ident : Error<"declarator requires an identifier">; 1471 "'__kindof' type specifier must precede the declarator">; 6328 "%0 used in array declarator outside of function prototype">; 6618 "typedef declarator cannot be qualified">; 6620 "parameter declarator cannot be qualified">; 7155 "@catch parameter declarator cannot be qualified">; 7466 "exception declarator cannot be qualified">;
|
| /freebsd-13.1/share/dict/ |
| H A D | web2 | 49560 declarator
|