Searched refs:ConstructorUsingShadowDecl (Results 1 – 16 of 16) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | DeclCXX.h | 58 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 D | ASTMutationListener.h | 19 class ConstructorUsingShadowDecl; variable
|
| H A D | TextNodeDumper.h | 376 void VisitConstructorUsingShadowDecl(const ConstructorUsingShadowDecl *D);
|
| H A D | RecursiveASTVisitor.h | 1717 DEF_TRAVERSE_DECL(ConstructorUsingShadowDecl, {})
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | DeclCXX.cpp | 3105 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 D | DeclPrinter.cpp | 1759 dyn_cast<ConstructorUsingShadowDecl>(Shadow)) { in VisitUsingDecl()
|
| H A D | TextNodeDumper.cpp | 2403 const ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
|
| H A D | ASTImporter.cpp | 4592 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 D | ASTReaderDecl.cpp | 412 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 D | ASTWriterDecl.cpp | 122 void VisitConstructorUsingShadowDecl(ConstructorUsingShadowDecl *D); 1417 ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaAccess.cpp | 1709 dyn_cast<ConstructorUsingShadowDecl>(Found.getDecl())) { in CheckConstructorAccess()
|
| H A D | SemaDeclCXX.cpp | 7352 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 D | SemaOverload.cpp | 6874 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 D | SemaTemplateInstantiateDecl.cpp | 3260 if (auto *CUSD = dyn_cast<ConstructorUsingShadowDecl>(Shadow)) in VisitBaseUsingDecls() 3402 ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
|
| H A D | SemaInit.cpp | 7074 if (auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>( in PerformConstructorInitialization()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | 6355 ConstructorUsingShadowDecl *DerivedShadow);
|