Home
last modified time | relevance | path

Searched refs:ConstructorUsingShadowDecl (Results 1 – 16 of 16) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h58 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 DASTMutationListener.h19 class ConstructorUsingShadowDecl; variable
H A DTextNodeDumper.h391 void VisitConstructorUsingShadowDecl(const ConstructorUsingShadowDecl *D);
H A DRecursiveASTVisitor.h1802 DEF_TRAVERSE_DECL(ConstructorUsingShadowDecl, {})
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp3361 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 DDeclPrinter.cpp1757 dyn_cast<ConstructorUsingShadowDecl>(Shadow)) { in VisitUsingDecl()
H A DTextNodeDumper.cpp2816 const ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
H A DASTImporter.cpp4953 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 DASTReaderDecl.cpp398 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 DASTWriterDecl.cpp137 void VisitConstructorUsingShadowDecl(ConstructorUsingShadowDecl *D);
1630 ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaAccess.cpp1720 dyn_cast<ConstructorUsingShadowDecl>(Found.getDecl())) { in CheckConstructorAccess()
H A DSemaDeclCXX.cpp7391 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 DSemaOverload.cpp7180 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 DSemaTemplateInstantiateDecl.cpp3851 if (auto *CUSD = dyn_cast<ConstructorUsingShadowDecl>(Shadow)) in VisitBaseUsingDecls()
3997 ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
H A DSemaInit.cpp7507 if (auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>( in PerformConstructorInitialization()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h5349 ConstructorUsingShadowDecl *DerivedShadow);