Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h58 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 DASTMutationListener.h19 class ConstructorUsingShadowDecl; variable
H A DTextNodeDumper.h360 void VisitConstructorUsingShadowDecl(const ConstructorUsingShadowDecl *D);
H A DRecursiveASTVisitor.h1616 DEF_TRAVERSE_DECL(ConstructorUsingShadowDecl, {})
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp2998 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 DDeclPrinter.cpp1603 dyn_cast<ConstructorUsingShadowDecl>(Shadow)) { in VisitUsingDecl()
H A DTextNodeDumper.cpp2136 const ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp396 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 DASTWriterDecl.cpp120 void VisitConstructorUsingShadowDecl(ConstructorUsingShadowDecl *D);
1312 ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaAccess.cpp1696 dyn_cast<ConstructorUsingShadowDecl>(Found.getDecl())) { in CheckConstructorAccess()
H A DSemaDeclCXX.cpp6994 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 DSemaOverload.cpp6369 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 DSemaTemplateInstantiateDecl.cpp3072 if (auto *CUSD = dyn_cast<ConstructorUsingShadowDecl>(Shadow)) in VisitBaseUsingDecls()
3212 ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
H A DSemaInit.cpp6551 if (auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>( in PerformConstructorInitialization()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h5769 ConstructorUsingShadowDecl *DerivedShadow);