Searched refs:inner_decl (Results 1 – 5 of 5) sorted by relevance
| /openbsd-src/gnu/usr.bin/gcc/gcc/cp/ |
| H A D | decl.c | 11469 tree inner_decl; local 11473 inner_decl = declarator; 11474 while (inner_decl != NULL_TREE 11475 && TREE_CODE (inner_decl) == TREE_LIST) 11476 inner_decl = TREE_VALUE (inner_decl); 11478 if (inner_decl == NULL_TREE 11479 || TREE_CODE (inner_decl) == IDENTIFIER_NODE) 11481 if (TREE_CODE (inner_decl) == CALL_EXPR) 11483 if (TREE_CODE (inner_decl) == ARRAY_REF) 11515 tree inner_decl = TREE_OPERAND (declarator, 0); local [all …]
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/ |
| H A D | c-decl.c | 3997 tree inner_decl; local 4000 inner_decl = declarator; 4001 while (inner_decl != NULL_TREE 4002 && TREE_CODE (inner_decl) == TREE_LIST) 4003 inner_decl = TREE_VALUE (inner_decl); 4004 if (inner_decl == NULL_TREE 4005 || TREE_CODE (inner_decl) == IDENTIFIER_NODE) 4007 else if (TREE_CODE (inner_decl) == CALL_EXPR) 4009 else if (TREE_CODE (inner_decl) == ARRAY_REF)
|
| /openbsd-src/gnu/gcc/gcc/ |
| H A D | c-decl.c | 4176 const struct c_declarator *inner_decl; in grokdeclarator() local 4179 inner_decl = declarator; in grokdeclarator() 4180 while (inner_decl->kind == cdk_attrs) in grokdeclarator() 4181 inner_decl = inner_decl->declarator; in grokdeclarator() 4182 if (inner_decl->kind == cdk_id) in grokdeclarator() 4184 else if (inner_decl->kind == cdk_function) in grokdeclarator() 4186 else if (inner_decl->kind == cdk_array) in grokdeclarator()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/java/ |
| H A D | parse.c | 13513 tree ptr, inner_decl; local 13516 inner_decl = resolve_class (decl, ptr, NULL_TREE, qual_wfl); 13517 if (inner_decl) 13519 check_inner_class_access (inner_decl, decl, qual_wfl); 13520 type = TREE_TYPE (inner_decl); 13521 decl = inner_decl;
|
| H A D | parse.y | 9948 tree ptr, inner_decl; local 9951 inner_decl = resolve_class (decl, ptr, NULL_TREE, qual_wfl); 9952 if (inner_decl) 9954 check_inner_class_access (inner_decl, decl, qual_wfl); 9955 type = TREE_TYPE (inner_decl); 9956 decl = inner_decl;
|