Searched refs:UnresolvedUsingIfExistsDecl (Results 1 – 9 of 9) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | DeclCXX.cpp | 3158 UnresolvedUsingIfExistsDecl * 3159 UnresolvedUsingIfExistsDecl::Create(ASTContext &Ctx, DeclContext *DC, in Create() 3161 return new (Ctx, DC) UnresolvedUsingIfExistsDecl(DC, Loc, Name); in Create() 3164 UnresolvedUsingIfExistsDecl * 3165 UnresolvedUsingIfExistsDecl::CreateDeserialized(ASTContext &Ctx, unsigned ID) { in CreateDeserialized() 3167 UnresolvedUsingIfExistsDecl(nullptr, SourceLocation(), DeclarationName()); in CreateDeserialized() 3170 UnresolvedUsingIfExistsDecl::UnresolvedUsingIfExistsDecl(DeclContext *DC, in UnresolvedUsingIfExistsDecl() function in UnresolvedUsingIfExistsDecl 3175 void UnresolvedUsingIfExistsDecl::anchor() {} in anchor()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | DeclCXX.h | 3891 class UnresolvedUsingIfExistsDecl final : public NamedDecl { 3892 UnresolvedUsingIfExistsDecl(DeclContext *DC, SourceLocation Loc, 3898 static UnresolvedUsingIfExistsDecl *Create(ASTContext &Ctx, DeclContext *DC, 3901 static UnresolvedUsingIfExistsDecl *CreateDeserialized(ASTContext &Ctx,
|
| H A D | RecursiveASTVisitor.h | 1861 DEF_TRAVERSE_DECL(UnresolvedUsingIfExistsDecl, {})
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTWriterDecl.cpp | 71 void VisitUnresolvedUsingIfExistsDecl(UnresolvedUsingIfExistsDecl *D); 1349 UnresolvedUsingIfExistsDecl *D) { in VisitUnresolvedUsingIfExistsDecl()
|
| H A D | ASTReaderDecl.cpp | 331 void VisitUnresolvedUsingIfExistsDecl(UnresolvedUsingIfExistsDecl *D); 1724 UnresolvedUsingIfExistsDecl *D) { in VisitUnresolvedUsingIfExistsDecl() 3884 D = UnresolvedUsingIfExistsDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaTemplateInstantiateDecl.cpp | 3078 dyn_cast<UnresolvedUsingIfExistsDecl>(Shadow->getTargetDecl())) { in VisitBaseUsingDecls() 3079 InstTarget = UnresolvedUsingIfExistsDecl::Create( in VisitBaseUsingDecls() 3328 UnresolvedUsingIfExistsDecl *D) { in VisitUnresolvedUsingIfExistsDecl()
|
| H A D | SemaDeclCXX.cpp | 11673 if (isa<UnresolvedUsingIfExistsDecl>(D1) && in IsEquivalentForUsingDecl() 11674 isa<UnresolvedUsingIfExistsDecl>(D2)) in IsEquivalentForUsingDecl() 11790 if (isa<UnresolvedUsingIfExistsDecl>(Target) != in CheckUsingShadowDecl() 11791 (isa_and_nonnull<UnresolvedUsingIfExistsDecl>(NonTag))) { in CheckUsingShadowDecl() 12214 R.addDecl(UnresolvedUsingIfExistsDecl::Create(Context, CurContext, UsingLoc, in BuildUsingDeclaration() 12292 !R.getAsSingle<UnresolvedUsingIfExistsDecl>()) { in BuildUsingDeclaration()
|
| H A D | SemaDecl.cpp | 438 if (isa<TypeDecl, ObjCInterfaceDecl, UnresolvedUsingIfExistsDecl>( in getTypeName() 493 } else if (auto *UD = dyn_cast<UnresolvedUsingIfExistsDecl>(IIDecl)) { in getTypeName() 513 !isa<ObjCInterfaceDecl, UnresolvedUsingIfExistsDecl>(IIDecl)) { in getTypeName() 1172 if (auto *EmptyD = dyn_cast<UnresolvedUsingIfExistsDecl>(FirstDecl)) { in ClassifyName()
|
| H A D | SemaExpr.cpp | 88 if (isa<UnresolvedUsingIfExistsDecl>(D)) in CanUseDecl() 356 if (const auto *EmptyD = dyn_cast<UnresolvedUsingIfExistsDecl>(D)) { in DiagnoseUseOfDecl() 3221 if (!isa<ValueDecl, UnresolvedUsingIfExistsDecl>(D)) { in BuildDeclarationNameExpr()
|