Searched refs:ConstructorUsingShadowDecl (Results 1 – 15 of 15) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
H A D | DeclCXX.h | 58 class ConstructorUsingShadowDecl; variable 2375 ConstructorUsingShadowDecl *Shadow = nullptr; 2380 InheritedConstructor(ConstructorUsingShadowDecl *Shadow, in InheritedConstructor() 2386 ConstructorUsingShadowDecl *getShadowDecl() const { return Shadow; } in getShadowDecl() 3279 class ConstructorUsingShadowDecl final : public UsingShadowDecl { 3283 ConstructorUsingShadowDecl *NominatedBaseClassShadowDecl = nullptr; 3289 ConstructorUsingShadowDecl *ConstructedBaseClassShadowDecl = nullptr; 3296 ConstructorUsingShadowDecl(ASTContext &C, DeclContext *DC, SourceLocation Loc, in ConstructorUsingShadowDecl() function 3302 dyn_cast<ConstructorUsingShadowDecl>(Target)), in ConstructorUsingShadowDecl() 3316 ConstructorUsingShadowDecl(ASTContext &C, EmptyShell Empty) in ConstructorUsingShadowDecl() function [all …]
|
H A D | ASTMutationListener.h | 19 class ConstructorUsingShadowDecl; variable
|
H A D | TextNodeDumper.h | 354 void VisitConstructorUsingShadowDecl(const ConstructorUsingShadowDecl *D);
|
H A D | RecursiveASTVisitor.h | 1604 DEF_TRAVERSE_DECL(ConstructorUsingShadowDecl, {})
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
H A D | DeclCXX.cpp | 3012 void ConstructorUsingShadowDecl::anchor() {} in anchor() 3014 ConstructorUsingShadowDecl * 3015 ConstructorUsingShadowDecl::Create(ASTContext &C, DeclContext *DC, in Create() 3018 return new (C, DC) ConstructorUsingShadowDecl(C, DC, Loc, Using, Target, in Create() 3022 ConstructorUsingShadowDecl * 3023 ConstructorUsingShadowDecl::CreateDeserialized(ASTContext &C, unsigned ID) { in CreateDeserialized() 3024 return new (C, ID) ConstructorUsingShadowDecl(C, EmptyShell()); in CreateDeserialized() 3027 CXXRecordDecl *ConstructorUsingShadowDecl::getNominatedBaseClass() const { in getNominatedBaseClass()
|
H A D | DeclPrinter.cpp | 1603 dyn_cast<ConstructorUsingShadowDecl>(Shadow)) { in VisitUsingDecl()
|
H A D | TextNodeDumper.cpp | 2079 const ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/ |
H A D | ASTReaderDecl.cpp | 394 void VisitConstructorUsingShadowDecl(ConstructorUsingShadowDecl *D); 1676 ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl() 1678 D->NominatedBaseClassShadowDecl = readDeclAs<ConstructorUsingShadowDecl>(); in VisitConstructorUsingShadowDecl() 1679 D->ConstructedBaseClassShadowDecl = readDeclAs<ConstructorUsingShadowDecl>(); in VisitConstructorUsingShadowDecl() 1985 auto *Shadow = readDeclAs<ConstructorUsingShadowDecl>(); in VisitCXXConstructorDecl() 3842 D = ConstructorUsingShadowDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
|
H A D | ASTWriterDecl.cpp | 118 void VisitConstructorUsingShadowDecl(ConstructorUsingShadowDecl *D); 1300 ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
H A D | SemaAccess.cpp | 1695 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() 11824 Shadow = ConstructorUsingShadowDecl::Create( in BuildUsingShadowDecl() 13132 ConstructorUsingShadowDecl *Shadow) { in findInheritingConstructor() 13241 ConstructorUsingShadowDecl *Shadow = in DefineInheritingConstructor() 15095 if (auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>(FoundDecl)) { in BuildCXXConstructExpr()
|
H A D | SemaOverload.cpp | 6373 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() 10091 if (isa<ConstructorUsingShadowDecl>(Found)) in ClassifyOverloadCandidate() 10133 if (auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>(FoundDecl)) in MaybeEmitInheritedConstructorNote()
|
H A D | SemaTemplateInstantiateDecl.cpp | 3058 if (auto *CUSD = dyn_cast<ConstructorUsingShadowDecl>(Shadow)) in VisitUsingDecl() 3096 ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
|
H A D | SemaInit.cpp | 6549 if (auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>( in PerformConstructorInitialization()
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
H A D | Sema.h | 5711 ConstructorUsingShadowDecl *DerivedShadow);
|