Searched refs:using_decl (Results 1 – 6 of 6) sorted by relevance
| /freebsd-12.1/contrib/gcc/cp/ |
| H A D | class.c | 902 add_method (tree type, tree method, tree using_decl) in add_method() argument 1052 if (using_decl) in add_method() 1061 using_decl); in add_method() 1159 handle_using_decl (tree using_decl, tree t) in handle_using_decl() argument 1161 tree decl = USING_DECL_DECLS (using_decl); in handle_using_decl() 1162 tree name = DECL_NAME (using_decl); in handle_using_decl() 1164 = TREE_PRIVATE (using_decl) ? access_private_node in handle_using_decl() 1165 : TREE_PROTECTED (using_decl) ? access_protected_node in handle_using_decl() 1198 error ("%q+D invalid in %q#T", using_decl, t); in handle_using_decl() 1206 error ("%q+D invalid in %q#T", using_decl, t); in handle_using_decl() [all …]
|
| H A D | cp-tree.def | 200 DEFTREECODE (USING_DECL, "using_decl", tcc_declaration, 0)
|
| H A D | ChangeLog | 5457 * cp-tree.h (add_method): Add using_decl parameter. 5458 * class.c (add_method): Add using_decl parameter. Adjust error
|
| H A D | ChangeLog-1994 | 226 (using_decl): New rule for using declarations. 230 (component_decl): Add using_decl.
|
| H A D | ChangeLog-1995 | 1668 * parse.y (lang_extdef, using_decl, extdef): Likewise.
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/ |
| H A D | ClangASTContext.cpp | 2000 clang::UsingDirectiveDecl *using_decl = clang::UsingDirectiveDecl::Create( in CreateUsingDirectiveDeclaration() local 2005 decl_ctx->addDecl(using_decl); in CreateUsingDirectiveDeclaration() 2006 return using_decl; in CreateUsingDirectiveDeclaration() 2015 clang::UsingDecl *using_decl = clang::UsingDecl::Create( in CreateUsingDeclaration() local 2019 *getASTContext(), current_decl_ctx, clang::SourceLocation(), using_decl, in CreateUsingDeclaration() 2021 using_decl->addShadowDecl(shadow_decl); in CreateUsingDeclaration() 2022 current_decl_ctx->addDecl(using_decl); in CreateUsingDeclaration() 2023 return using_decl; in CreateUsingDeclaration()
|