Searched refs:ConstructorUsingShadowDecl (Results 1 – 15 of 15) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | DeclCXX.h | 58 class ConstructorUsingShadowDecl; variable 2377 ConstructorUsingShadowDecl *Shadow = nullptr; 2382 InheritedConstructor(ConstructorUsingShadowDecl *Shadow, in InheritedConstructor() 2388 ConstructorUsingShadowDecl *getShadowDecl() const { return Shadow; } in getShadowDecl() 3464 class ConstructorUsingShadowDecl final : public UsingShadowDecl { 3468 ConstructorUsingShadowDecl *NominatedBaseClassShadowDecl = nullptr; 3474 ConstructorUsingShadowDecl *ConstructedBaseClassShadowDecl = nullptr; 3488 dyn_cast<ConstructorUsingShadowDecl>(Target)), in ConstructorUsingShadowDecl() 3502 ConstructorUsingShadowDecl(ASTContext &C, EmptyShell Empty) in ConstructorUsingShadowDecl() function 3515 static ConstructorUsingShadowDecl *CreateDeserialized(ASTContext &C, [all …]
|
| H A D | ASTMutationListener.h | 19 class ConstructorUsingShadowDecl; variable
|
| H A D | TextNodeDumper.h | 360 void VisitConstructorUsingShadowDecl(const ConstructorUsingShadowDecl *D);
|
| H A D | RecursiveASTVisitor.h | 1616 DEF_TRAVERSE_DECL(ConstructorUsingShadowDecl, {})
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | DeclCXX.cpp | 2998 void ConstructorUsingShadowDecl::anchor() {} in anchor() 3000 ConstructorUsingShadowDecl * 3001 ConstructorUsingShadowDecl::Create(ASTContext &C, DeclContext *DC, in Create() 3004 return new (C, DC) ConstructorUsingShadowDecl(C, DC, Loc, Using, Target, in Create() 3008 ConstructorUsingShadowDecl * 3009 ConstructorUsingShadowDecl::CreateDeserialized(ASTContext &C, unsigned ID) { in CreateDeserialized() 3010 return new (C, ID) ConstructorUsingShadowDecl(C, EmptyShell()); in CreateDeserialized() 3013 CXXRecordDecl *ConstructorUsingShadowDecl::getNominatedBaseClass() const { in getNominatedBaseClass()
|
| H A D | DeclPrinter.cpp | 1603 dyn_cast<ConstructorUsingShadowDecl>(Shadow)) { in VisitUsingDecl()
|
| H A D | TextNodeDumper.cpp | 2136 const ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReaderDecl.cpp | 396 void VisitConstructorUsingShadowDecl(ConstructorUsingShadowDecl *D); 1689 ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl() 1691 D->NominatedBaseClassShadowDecl = readDeclAs<ConstructorUsingShadowDecl>(); in VisitConstructorUsingShadowDecl() 1692 D->ConstructedBaseClassShadowDecl = readDeclAs<ConstructorUsingShadowDecl>(); in VisitConstructorUsingShadowDecl() 2003 auto *Shadow = readDeclAs<ConstructorUsingShadowDecl>(); in VisitCXXConstructorDecl() 3872 D = ConstructorUsingShadowDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
|
| H A D | ASTWriterDecl.cpp | 120 void VisitConstructorUsingShadowDecl(ConstructorUsingShadowDecl *D); 1312 ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaAccess.cpp | 1696 dyn_cast<ConstructorUsingShadowDecl>(Found.getDecl())) { in CheckConstructorAccess()
|
| H A D | SemaDeclCXX.cpp | 6994 llvm::DenseMap<CXXRecordDecl *, ConstructorUsingShadowDecl *> 6999 ConstructorUsingShadowDecl *Shadow) in InheritedConstructorInfo() 7008 auto *DShadow = cast<ConstructorUsingShadowDecl>(D); in InheritedConstructorInfo() 11886 Shadow = ConstructorUsingShadowDecl::Create( in BuildUsingShadowDecl() 13324 ConstructorUsingShadowDecl *Shadow) { in findInheritingConstructor() 13433 ConstructorUsingShadowDecl *Shadow = in DefineInheritingConstructor() 15300 if (auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>(FoundDecl)) { in BuildCXXConstructExpr()
|
| H A D | SemaOverload.cpp | 6369 auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>(FoundDecl.getDecl()); in AddOverloadCandidate() 9801 dyn_cast_or_null<ConstructorUsingShadowDecl>(Cand1.FoundDecl.getDecl()); in isBetterOverloadCandidate() 9803 dyn_cast_or_null<ConstructorUsingShadowDecl>(Cand2.FoundDecl.getDecl()); in isBetterOverloadCandidate() 10108 if (isa<ConstructorUsingShadowDecl>(Found)) in ClassifyOverloadCandidate() 10150 if (auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>(FoundDecl)) in MaybeEmitInheritedConstructorNote()
|
| H A D | SemaTemplateInstantiateDecl.cpp | 3072 if (auto *CUSD = dyn_cast<ConstructorUsingShadowDecl>(Shadow)) in VisitBaseUsingDecls() 3212 ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
|
| H A D | SemaInit.cpp | 6551 if (auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>( in PerformConstructorInitialization()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | 5769 ConstructorUsingShadowDecl *DerivedShadow);
|