Searched refs:ConstructorUsingShadowDecl (Results 1 – 16 of 16) sorted by relevance
/openbsd-src/gnu/llvm/clang/include/clang/AST/ |
H A D | DeclCXX.h | 58 class ConstructorUsingShadowDecl; variable 2423 ConstructorUsingShadowDecl *Shadow = nullptr; 2428 InheritedConstructor(ConstructorUsingShadowDecl *Shadow, in InheritedConstructor() 2434 ConstructorUsingShadowDecl *getShadowDecl() const { return Shadow; } in getShadowDecl() 3512 class ConstructorUsingShadowDecl final : public UsingShadowDecl { 3516 ConstructorUsingShadowDecl *NominatedBaseClassShadowDecl = nullptr; 3522 ConstructorUsingShadowDecl *ConstructedBaseClassShadowDecl = nullptr; 3529 ConstructorUsingShadowDecl(ASTContext &C, DeclContext *DC, SourceLocation Loc, in ConstructorUsingShadowDecl() function 3536 dyn_cast<ConstructorUsingShadowDecl>(Target)), in ConstructorUsingShadowDecl() 3550 ConstructorUsingShadowDecl(ASTContext &C, EmptyShell Empty) in ConstructorUsingShadowDecl() function [all …]
|
H A D | ASTMutationListener.h | 19 class ConstructorUsingShadowDecl; variable
|
H A D | TextNodeDumper.h | 367 void VisitConstructorUsingShadowDecl(const ConstructorUsingShadowDecl *D);
|
H A D | RecursiveASTVisitor.h | 1736 DEF_TRAVERSE_DECL(ConstructorUsingShadowDecl, {})
|
/openbsd-src/gnu/llvm/clang/lib/AST/ |
H A D | DeclCXX.cpp | 3051 void ConstructorUsingShadowDecl::anchor() {} in anchor() 3053 ConstructorUsingShadowDecl * 3054 ConstructorUsingShadowDecl::Create(ASTContext &C, DeclContext *DC, in Create() 3057 return new (C, DC) ConstructorUsingShadowDecl(C, DC, Loc, Using, Target, in Create() 3061 ConstructorUsingShadowDecl * 3062 ConstructorUsingShadowDecl::CreateDeserialized(ASTContext &C, unsigned ID) { in CreateDeserialized() 3063 return new (C, ID) ConstructorUsingShadowDecl(C, EmptyShell()); in CreateDeserialized() 3066 CXXRecordDecl *ConstructorUsingShadowDecl::getNominatedBaseClass() const { in getNominatedBaseClass()
|
H A D | DeclPrinter.cpp | 1620 dyn_cast<ConstructorUsingShadowDecl>(Shadow)) { in VisitUsingDecl()
|
H A D | TextNodeDumper.cpp | 2193 const ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
|
H A D | ASTImporter.cpp | 4364 ConstructorUsingShadowDecl *ToShadow = in ImportInheritedConstructor() 4912 dyn_cast<ConstructorUsingShadowDecl>(D)) { in VisitUsingShadowDecl() 4914 ConstructorUsingShadowDecl *Nominated = importChecked( in VisitUsingShadowDecl() 4923 if (GetImportedOrCreateDecl<ConstructorUsingShadowDecl>( in VisitUsingShadowDecl()
|
/openbsd-src/gnu/llvm/clang/lib/Serialization/ |
H A D | ASTReaderDecl.cpp | 401 void VisitConstructorUsingShadowDecl(ConstructorUsingShadowDecl *D); 1856 ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl() 1858 D->NominatedBaseClassShadowDecl = readDeclAs<ConstructorUsingShadowDecl>(); in VisitConstructorUsingShadowDecl() 1859 D->ConstructedBaseClassShadowDecl = readDeclAs<ConstructorUsingShadowDecl>(); in VisitConstructorUsingShadowDecl() 2191 auto *Shadow = readDeclAs<ConstructorUsingShadowDecl>(); in VisitCXXConstructorDecl() 3708 D = ConstructorUsingShadowDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
|
H A D | ASTWriterDecl.cpp | 124 void VisitConstructorUsingShadowDecl(ConstructorUsingShadowDecl *D); 1342 ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
|
/openbsd-src/gnu/llvm/clang/lib/Sema/ |
H A D | SemaAccess.cpp | 1699 dyn_cast<ConstructorUsingShadowDecl>(Found.getDecl())) { in CheckConstructorAccess()
|
H A D | SemaDeclCXX.cpp | 7148 llvm::DenseMap<CXXRecordDecl *, ConstructorUsingShadowDecl *> 7153 ConstructorUsingShadowDecl *Shadow) in InheritedConstructorInfo() 7162 auto *DShadow = cast<ConstructorUsingShadowDecl>(D); in InheritedConstructorInfo() 12194 Shadow = ConstructorUsingShadowDecl::Create( in BuildUsingShadowDecl() 13634 ConstructorUsingShadowDecl *Shadow) { in findInheritingConstructor() 13744 ConstructorUsingShadowDecl *Shadow = in DefineInheritingConstructor() 15622 if (auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>(FoundDecl)) { in BuildCXXConstructExpr()
|
H A D | SemaOverload.cpp | 6554 auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>(FoundDecl.getDecl()); in AddOverloadCandidate() 10075 isa_and_nonnull<ConstructorUsingShadowDecl>(Cand1.FoundDecl.getDecl()); in isBetterOverloadCandidate() 10077 isa_and_nonnull<ConstructorUsingShadowDecl>(Cand2.FoundDecl.getDecl()); in isBetterOverloadCandidate() 10397 if (isa<ConstructorUsingShadowDecl>(Found)) in ClassifyOverloadCandidate() 10439 if (auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>(FoundDecl)) in MaybeEmitInheritedConstructorNote()
|
H A D | SemaTemplateInstantiateDecl.cpp | 3188 if (auto *CUSD = dyn_cast<ConstructorUsingShadowDecl>(Shadow)) in VisitBaseUsingDecls() 3330 ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
|
H A D | SemaInit.cpp | 6930 if (auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>( in PerformConstructorInitialization()
|
/openbsd-src/gnu/llvm/clang/include/clang/Sema/ |
H A D | Sema.h | 6202 ConstructorUsingShadowDecl *DerivedShadow);
|