Searched refs:ConstructorUsingShadowDecl (Results 1 – 16 of 16) sorted by relevance
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | DeclCXX.h | 58 class ConstructorUsingShadowDecl; variable 2571 ConstructorUsingShadowDecl *Shadow = nullptr; 2576 InheritedConstructor(ConstructorUsingShadowDecl *Shadow, in InheritedConstructor() 2582 ConstructorUsingShadowDecl *getShadowDecl() const { return Shadow; } in getShadowDecl() 3668 class ConstructorUsingShadowDecl final : public UsingShadowDecl { 3672 ConstructorUsingShadowDecl *NominatedBaseClassShadowDecl = nullptr; 3678 ConstructorUsingShadowDecl *ConstructedBaseClassShadowDecl = nullptr; 3686 ConstructorUsingShadowDecl(ASTContext &C, DeclContext *DC, SourceLocation Loc, in ConstructorUsingShadowDecl() function 3693 dyn_cast<ConstructorUsingShadowDecl>(Target)), in ConstructorUsingShadowDecl() 3707 ConstructorUsingShadowDecl(ASTContext &C, EmptyShell Empty) in ConstructorUsingShadowDecl() function [all …]
|
| H A D | ASTMutationListener.h | 19 class ConstructorUsingShadowDecl; variable
|
| H A D | TextNodeDumper.h | 391 void VisitConstructorUsingShadowDecl(const ConstructorUsingShadowDecl *D);
|
| H A D | RecursiveASTVisitor.h | 1802 DEF_TRAVERSE_DECL(ConstructorUsingShadowDecl, {})
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | DeclCXX.cpp | 3361 void ConstructorUsingShadowDecl::anchor() {} in anchor() 3363 ConstructorUsingShadowDecl * 3364 ConstructorUsingShadowDecl::Create(ASTContext &C, DeclContext *DC, in Create() 3367 return new (C, DC) ConstructorUsingShadowDecl(C, DC, Loc, Using, Target, in Create() 3371 ConstructorUsingShadowDecl * 3372 ConstructorUsingShadowDecl::CreateDeserialized(ASTContext &C, GlobalDeclID ID) { in CreateDeserialized() 3373 return new (C, ID) ConstructorUsingShadowDecl(C, EmptyShell()); in CreateDeserialized() 3376 CXXRecordDecl *ConstructorUsingShadowDecl::getNominatedBaseClass() const { in getNominatedBaseClass()
|
| H A D | DeclPrinter.cpp | 1757 dyn_cast<ConstructorUsingShadowDecl>(Shadow)) { in VisitUsingDecl()
|
| H A D | TextNodeDumper.cpp | 2816 const ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
|
| H A D | ASTImporter.cpp | 4953 ConstructorUsingShadowDecl *ToShadow = in ImportInheritedConstructor() 5506 dyn_cast<ConstructorUsingShadowDecl>(D)) { in VisitUsingShadowDecl() 5508 ConstructorUsingShadowDecl *Nominated = importChecked( in VisitUsingShadowDecl() 5517 if (GetImportedOrCreateDecl<ConstructorUsingShadowDecl>( in VisitUsingShadowDecl()
|
| /freebsd/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReaderDecl.cpp | 398 void VisitConstructorUsingShadowDecl(ConstructorUsingShadowDecl *D); 1941 ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl() 1943 D->NominatedBaseClassShadowDecl = readDeclAs<ConstructorUsingShadowDecl>(); in VisitConstructorUsingShadowDecl() 1944 D->ConstructedBaseClassShadowDecl = readDeclAs<ConstructorUsingShadowDecl>(); in VisitConstructorUsingShadowDecl() 2331 auto *Shadow = readDeclAs<ConstructorUsingShadowDecl>(); in VisitCXXConstructorDecl() 3978 D = ConstructorUsingShadowDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
|
| H A D | ASTWriterDecl.cpp | 137 void VisitConstructorUsingShadowDecl(ConstructorUsingShadowDecl *D); 1630 ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaAccess.cpp | 1720 dyn_cast<ConstructorUsingShadowDecl>(Found.getDecl())) { in CheckConstructorAccess()
|
| H A D | SemaDeclCXX.cpp | 7391 llvm::DenseMap<CXXRecordDecl *, ConstructorUsingShadowDecl *> 7396 ConstructorUsingShadowDecl *Shadow) in InheritedConstructorInfo() 7405 auto *DShadow = cast<ConstructorUsingShadowDecl>(D); in InheritedConstructorInfo() 12873 Shadow = ConstructorUsingShadowDecl::Create( in BuildUsingShadowDecl() 14236 ConstructorUsingShadowDecl *Shadow) { in findInheritingConstructor() 14348 ConstructorUsingShadowDecl *Shadow = in DefineInheritingConstructor() 16253 if (auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>(FoundDecl)) { in BuildCXXConstructExpr()
|
| H A D | SemaOverload.cpp | 7180 auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>(FoundDecl.getDecl()); in AddOverloadCandidate() 10980 isa_and_nonnull<ConstructorUsingShadowDecl>(Cand1.FoundDecl.getDecl()); in isBetterOverloadCandidate() 10982 isa_and_nonnull<ConstructorUsingShadowDecl>(Cand2.FoundDecl.getDecl()); in isBetterOverloadCandidate() 11524 if (isa<ConstructorUsingShadowDecl>(Found)) in ClassifyOverloadCandidate() 11566 if (const auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>(FoundDecl)) in MaybeEmitInheritedConstructorNote()
|
| H A D | SemaTemplateInstantiateDecl.cpp | 3851 if (auto *CUSD = dyn_cast<ConstructorUsingShadowDecl>(Shadow)) in VisitBaseUsingDecls() 3997 ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
|
| H A D | SemaInit.cpp | 7507 if (auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>( in PerformConstructorInitialization()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | 5349 ConstructorUsingShadowDecl *DerivedShadow);
|