Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDeclCXX.h58 class ConstructorUsingShadowDecl; variable
2375 ConstructorUsingShadowDecl *Shadow = nullptr;
2380 InheritedConstructor(ConstructorUsingShadowDecl *Shadow, in InheritedConstructor()
2386 ConstructorUsingShadowDecl *getShadowDecl() const { return Shadow; } in getShadowDecl()
3279 class ConstructorUsingShadowDecl final : public UsingShadowDecl {
3283 ConstructorUsingShadowDecl *NominatedBaseClassShadowDecl = nullptr;
3289 ConstructorUsingShadowDecl *ConstructedBaseClassShadowDecl = nullptr;
3296 ConstructorUsingShadowDecl(ASTContext &C, DeclContext *DC, SourceLocation Loc, in ConstructorUsingShadowDecl() function
3302 dyn_cast<ConstructorUsingShadowDecl>(Target)), in ConstructorUsingShadowDecl()
3316 ConstructorUsingShadowDecl(ASTContext &C, EmptyShell Empty) in ConstructorUsingShadowDecl() function
[all …]
H A DASTMutationListener.h19 class ConstructorUsingShadowDecl; variable
H A DTextNodeDumper.h354 void VisitConstructorUsingShadowDecl(const ConstructorUsingShadowDecl *D);
H A DRecursiveASTVisitor.h1604 DEF_TRAVERSE_DECL(ConstructorUsingShadowDecl, {})
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DDeclCXX.cpp3012 void ConstructorUsingShadowDecl::anchor() {} in anchor()
3014 ConstructorUsingShadowDecl *
3015 ConstructorUsingShadowDecl::Create(ASTContext &C, DeclContext *DC, in Create()
3018 return new (C, DC) ConstructorUsingShadowDecl(C, DC, Loc, Using, Target, in Create()
3022 ConstructorUsingShadowDecl *
3023 ConstructorUsingShadowDecl::CreateDeserialized(ASTContext &C, unsigned ID) { in CreateDeserialized()
3024 return new (C, ID) ConstructorUsingShadowDecl(C, EmptyShell()); in CreateDeserialized()
3027 CXXRecordDecl *ConstructorUsingShadowDecl::getNominatedBaseClass() const { in getNominatedBaseClass()
H A DDeclPrinter.cpp1603 dyn_cast<ConstructorUsingShadowDecl>(Shadow)) { in VisitUsingDecl()
H A DTextNodeDumper.cpp2079 const ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderDecl.cpp394 void VisitConstructorUsingShadowDecl(ConstructorUsingShadowDecl *D);
1676 ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
1678 D->NominatedBaseClassShadowDecl = readDeclAs<ConstructorUsingShadowDecl>(); in VisitConstructorUsingShadowDecl()
1679 D->ConstructedBaseClassShadowDecl = readDeclAs<ConstructorUsingShadowDecl>(); in VisitConstructorUsingShadowDecl()
1985 auto *Shadow = readDeclAs<ConstructorUsingShadowDecl>(); in VisitCXXConstructorDecl()
3842 D = ConstructorUsingShadowDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
H A DASTWriterDecl.cpp118 void VisitConstructorUsingShadowDecl(ConstructorUsingShadowDecl *D);
1300 ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaAccess.cpp1695 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()
11824 Shadow = ConstructorUsingShadowDecl::Create( in BuildUsingShadowDecl()
13132 ConstructorUsingShadowDecl *Shadow) { in findInheritingConstructor()
13241 ConstructorUsingShadowDecl *Shadow = in DefineInheritingConstructor()
15095 if (auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>(FoundDecl)) { in BuildCXXConstructExpr()
H A DSemaOverload.cpp6373 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()
10091 if (isa<ConstructorUsingShadowDecl>(Found)) in ClassifyOverloadCandidate()
10133 if (auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>(FoundDecl)) in MaybeEmitInheritedConstructorNote()
H A DSemaTemplateInstantiateDecl.cpp3058 if (auto *CUSD = dyn_cast<ConstructorUsingShadowDecl>(Shadow)) in VisitUsingDecl()
3096 ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
H A DSemaInit.cpp6549 if (auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>( in PerformConstructorInitialization()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h5711 ConstructorUsingShadowDecl *DerivedShadow);