Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DDeclCXX.h58 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 DASTMutationListener.h19 class ConstructorUsingShadowDecl; variable
H A DTextNodeDumper.h367 void VisitConstructorUsingShadowDecl(const ConstructorUsingShadowDecl *D);
H A DRecursiveASTVisitor.h1736 DEF_TRAVERSE_DECL(ConstructorUsingShadowDecl, {})
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DDeclCXX.cpp3051 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 DDeclPrinter.cpp1620 dyn_cast<ConstructorUsingShadowDecl>(Shadow)) { in VisitUsingDecl()
H A DTextNodeDumper.cpp2193 const ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
H A DASTImporter.cpp4364 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 DASTReaderDecl.cpp401 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 DASTWriterDecl.cpp124 void VisitConstructorUsingShadowDecl(ConstructorUsingShadowDecl *D);
1342 ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaAccess.cpp1699 dyn_cast<ConstructorUsingShadowDecl>(Found.getDecl())) { in CheckConstructorAccess()
H A DSemaDeclCXX.cpp7148 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 DSemaOverload.cpp6554 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 DSemaTemplateInstantiateDecl.cpp3188 if (auto *CUSD = dyn_cast<ConstructorUsingShadowDecl>(Shadow)) in VisitBaseUsingDecls()
3330 ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
H A DSemaInit.cpp6930 if (auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>( in PerformConstructorInitialization()
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DSema.h6202 ConstructorUsingShadowDecl *DerivedShadow);