Searched refs:ConstructorUsingShadowDecl (Results 1 – 13 of 13) sorted by relevance
/external/clang/include/clang/AST/ |
D | DeclCXX.h | 33 class ConstructorUsingShadowDecl; variable 2162 ConstructorUsingShadowDecl *Shadow; 2167 InheritedConstructor(ConstructorUsingShadowDecl *Shadow, in InheritedConstructor() 2173 ConstructorUsingShadowDecl *getShadowDecl() const { return Shadow; } in getShadowDecl() 2927 class ConstructorUsingShadowDecl final : public UsingShadowDecl { 2933 ConstructorUsingShadowDecl *NominatedBaseClassShadowDecl; 2939 ConstructorUsingShadowDecl *ConstructedBaseClassShadowDecl; 2946 ConstructorUsingShadowDecl(ASTContext &C, DeclContext *DC, SourceLocation Loc, in ConstructorUsingShadowDecl() function 2952 dyn_cast<ConstructorUsingShadowDecl>(Target)), in ConstructorUsingShadowDecl() 2966 ConstructorUsingShadowDecl(ASTContext &C, EmptyShell Empty) in ConstructorUsingShadowDecl() function [all …]
|
D | ASTMutationListener.h | 20 class ConstructorUsingShadowDecl; variable
|
D | RecursiveASTVisitor.h | 1498 DEF_TRAVERSE_DECL(ConstructorUsingShadowDecl, {})
|
/external/clang/lib/AST/ |
D | DeclCXX.cpp | 2174 void ConstructorUsingShadowDecl::anchor() { } in anchor() 2176 ConstructorUsingShadowDecl * 2177 ConstructorUsingShadowDecl::Create(ASTContext &C, DeclContext *DC, in Create() 2180 return new (C, DC) ConstructorUsingShadowDecl(C, DC, Loc, Using, Target, in Create() 2184 ConstructorUsingShadowDecl * 2185 ConstructorUsingShadowDecl::CreateDeserialized(ASTContext &C, unsigned ID) { in CreateDeserialized() 2186 return new (C, ID) ConstructorUsingShadowDecl(C, EmptyShell()); in CreateDeserialized() 2189 CXXRecordDecl *ConstructorUsingShadowDecl::getNominatedBaseClass() const { in getNominatedBaseClass()
|
D | ASTDumper.cpp | 477 void VisitConstructorUsingShadowDecl(const ConstructorUsingShadowDecl *D); 1502 const ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
|
/external/clang/lib/Serialization/ |
D | ASTReaderDecl.cpp | 327 void VisitConstructorUsingShadowDecl(ConstructorUsingShadowDecl *D); 1426 ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl() 1429 ReadDeclAs<ConstructorUsingShadowDecl>(Record, Idx); in VisitConstructorUsingShadowDecl() 1431 ReadDeclAs<ConstructorUsingShadowDecl>(Record, Idx); in VisitConstructorUsingShadowDecl() 1785 auto *Shadow = ReadDeclAs<ConstructorUsingShadowDecl>(Record, Idx); in VisitCXXConstructorDecl() 3265 D = ConstructorUsingShadowDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
|
D | ASTWriterDecl.cpp | 110 void VisitConstructorUsingShadowDecl(ConstructorUsingShadowDecl *D); 1131 ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
|
/external/clang/lib/Sema/ |
D | SemaAccess.cpp | 1678 dyn_cast<ConstructorUsingShadowDecl>(Found.getDecl())) { in CheckConstructorAccess()
|
D | SemaDeclCXX.cpp | 5081 llvm::DenseMap<CXXRecordDecl *, ConstructorUsingShadowDecl *> 5086 ConstructorUsingShadowDecl *Shadow) in InheritedConstructorInfo() 5095 auto *DShadow = cast<ConstructorUsingShadowDecl>(D); in InheritedConstructorInfo() 8061 Shadow = ConstructorUsingShadowDecl::Create( in BuildUsingShadowDecl() 9246 ConstructorUsingShadowDecl *Shadow) { in findInheritingConstructor() 9340 ConstructorUsingShadowDecl *Shadow = in DefineInheritingConstructor() 11481 if (auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>(FoundDecl)) { in BuildCXXConstructExpr()
|
D | SemaTemplateInstantiateDecl.cpp | 2424 if (auto *CUSD = dyn_cast<ConstructorUsingShadowDecl>(Shadow)) in VisitUsingDecl() 2462 ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
|
D | SemaOverload.cpp | 8652 dyn_cast_or_null<ConstructorUsingShadowDecl>(Cand1.FoundDecl.getDecl()); in isBetterOverloadCandidate() 8654 dyn_cast_or_null<ConstructorUsingShadowDecl>(Cand2.FoundDecl.getDecl()); in isBetterOverloadCandidate() 8877 if (isa<ConstructorUsingShadowDecl>(Found)) in ClassifyOverloadCandidate() 8917 if (auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>(FoundDecl)) in MaybeEmitInheritedConstructorNote()
|
D | SemaInit.cpp | 5743 if (auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>( in PerformConstructorInitialization()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 4268 ConstructorUsingShadowDecl *DerivedShadow);
|