Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h58 class ConstructorUsingShadowDecl; variable
2500 ConstructorUsingShadowDecl *Shadow = nullptr;
2505 InheritedConstructor(ConstructorUsingShadowDecl *Shadow, in InheritedConstructor()
2511 ConstructorUsingShadowDecl *getShadowDecl() const { return Shadow; } in getShadowDecl()
3591 class ConstructorUsingShadowDecl final : public UsingShadowDecl {
3595 ConstructorUsingShadowDecl *NominatedBaseClassShadowDecl = nullptr;
3601 ConstructorUsingShadowDecl *ConstructedBaseClassShadowDecl = nullptr;
3616 dyn_cast<ConstructorUsingShadowDecl>(Target)), in ConstructorUsingShadowDecl()
3630 ConstructorUsingShadowDecl(ASTContext &C, EmptyShell Empty) in ConstructorUsingShadowDecl() function
3643 static ConstructorUsingShadowDecl *CreateDeserialized(ASTContext &C,
[all …]
H A DASTMutationListener.h19 class ConstructorUsingShadowDecl; variable
H A DTextNodeDumper.h376 void VisitConstructorUsingShadowDecl(const ConstructorUsingShadowDecl *D);
H A DRecursiveASTVisitor.h1717 DEF_TRAVERSE_DECL(ConstructorUsingShadowDecl, {})
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp3105 void ConstructorUsingShadowDecl::anchor() {} in anchor()
3107 ConstructorUsingShadowDecl *
3108 ConstructorUsingShadowDecl::Create(ASTContext &C, DeclContext *DC, in Create()
3111 return new (C, DC) ConstructorUsingShadowDecl(C, DC, Loc, Using, Target, in Create()
3115 ConstructorUsingShadowDecl *
3116 ConstructorUsingShadowDecl::CreateDeserialized(ASTContext &C, unsigned ID) { in CreateDeserialized()
3117 return new (C, ID) ConstructorUsingShadowDecl(C, EmptyShell()); in CreateDeserialized()
3120 CXXRecordDecl *ConstructorUsingShadowDecl::getNominatedBaseClass() const { in getNominatedBaseClass()
H A DDeclPrinter.cpp1759 dyn_cast<ConstructorUsingShadowDecl>(Shadow)) { in VisitUsingDecl()
H A DTextNodeDumper.cpp2403 const ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
H A DASTImporter.cpp4592 ConstructorUsingShadowDecl *ToShadow = in ImportInheritedConstructor()
5145 dyn_cast<ConstructorUsingShadowDecl>(D)) { in VisitUsingShadowDecl()
5147 ConstructorUsingShadowDecl *Nominated = importChecked( in VisitUsingShadowDecl()
5156 if (GetImportedOrCreateDecl<ConstructorUsingShadowDecl>( in VisitUsingShadowDecl()
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp412 void VisitConstructorUsingShadowDecl(ConstructorUsingShadowDecl *D);
1933 ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
1935 D->NominatedBaseClassShadowDecl = readDeclAs<ConstructorUsingShadowDecl>(); in VisitConstructorUsingShadowDecl()
1936 D->ConstructedBaseClassShadowDecl = readDeclAs<ConstructorUsingShadowDecl>(); in VisitConstructorUsingShadowDecl()
2320 auto *Shadow = readDeclAs<ConstructorUsingShadowDecl>(); in VisitCXXConstructorDecl()
3876 D = ConstructorUsingShadowDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
H A DASTWriterDecl.cpp122 void VisitConstructorUsingShadowDecl(ConstructorUsingShadowDecl *D);
1417 ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaAccess.cpp1709 dyn_cast<ConstructorUsingShadowDecl>(Found.getDecl())) { in CheckConstructorAccess()
H A DSemaDeclCXX.cpp7352 llvm::DenseMap<CXXRecordDecl *, ConstructorUsingShadowDecl *>
7357 ConstructorUsingShadowDecl *Shadow) in InheritedConstructorInfo()
7366 auto *DShadow = cast<ConstructorUsingShadowDecl>(D); in InheritedConstructorInfo()
12633 Shadow = ConstructorUsingShadowDecl::Create( in BuildUsingShadowDecl()
14073 ConstructorUsingShadowDecl *Shadow) { in findInheritingConstructor()
14183 ConstructorUsingShadowDecl *Shadow = in DefineInheritingConstructor()
16082 if (auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>(FoundDecl)) { in BuildCXXConstructExpr()
H A DSemaOverload.cpp6874 auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>(FoundDecl.getDecl()); in AddOverloadCandidate()
10481 isa_and_nonnull<ConstructorUsingShadowDecl>(Cand1.FoundDecl.getDecl()); in isBetterOverloadCandidate()
10483 isa_and_nonnull<ConstructorUsingShadowDecl>(Cand2.FoundDecl.getDecl()); in isBetterOverloadCandidate()
10819 if (isa<ConstructorUsingShadowDecl>(Found)) in ClassifyOverloadCandidate()
10861 if (const auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>(FoundDecl)) in MaybeEmitInheritedConstructorNote()
H A DSemaTemplateInstantiateDecl.cpp3260 if (auto *CUSD = dyn_cast<ConstructorUsingShadowDecl>(Shadow)) in VisitBaseUsingDecls()
3402 ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
H A DSemaInit.cpp7074 if (auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>( in PerformConstructorInitialization()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h6355 ConstructorUsingShadowDecl *DerivedShadow);