Searched refs:enclosing_decl (Results 1 – 2 of 2) sorted by relevance
/openbsd-src/gnu/usr.bin/gcc/gcc/java/ |
H A D | parse.c | 10697 check_inner_class_access (decl, enclosing_decl, cl) in check_inner_class_access() argument 10698 tree decl, enclosing_decl, cl; in check_inner_class_access() 10711 enclosing_decl_type = TREE_TYPE (enclosing_decl); 10720 while (DECL_CONTEXT (enclosing_decl)) 10721 enclosing_decl = DECL_CONTEXT (enclosing_decl); 10722 if (top_level == enclosing_decl) 10730 if (in_same_package (decl, enclosing_decl)) 10736 while (enclosing_decl) 10751 enclosing_decl = DECL_CONTEXT (enclosing_decl); 10758 if (in_same_package (decl, enclosing_decl))
|
H A D | parse.y | 7132 check_inner_class_access (decl, enclosing_decl, cl) in check_inner_class_access() argument 7133 tree decl, enclosing_decl, cl; in check_inner_class_access() 7146 enclosing_decl_type = TREE_TYPE (enclosing_decl); 7155 while (DECL_CONTEXT (enclosing_decl)) 7156 enclosing_decl = DECL_CONTEXT (enclosing_decl); 7157 if (top_level == enclosing_decl) 7165 if (in_same_package (decl, enclosing_decl)) 7171 while (enclosing_decl) 7186 enclosing_decl = DECL_CONTEXT (enclosing_decl); 7193 if (in_same_package (decl, enclosing_decl))
|