Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DDeclCXX.h33 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 …]
DASTMutationListener.h20 class ConstructorUsingShadowDecl; variable
DRecursiveASTVisitor.h1498 DEF_TRAVERSE_DECL(ConstructorUsingShadowDecl, {})
/external/clang/lib/AST/
DDeclCXX.cpp2174 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()
DASTDumper.cpp477 void VisitConstructorUsingShadowDecl(const ConstructorUsingShadowDecl *D);
1502 const ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
/external/clang/lib/Serialization/
DASTReaderDecl.cpp327 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()
DASTWriterDecl.cpp110 void VisitConstructorUsingShadowDecl(ConstructorUsingShadowDecl *D);
1131 ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
/external/clang/lib/Sema/
DSemaAccess.cpp1678 dyn_cast<ConstructorUsingShadowDecl>(Found.getDecl())) { in CheckConstructorAccess()
DSemaDeclCXX.cpp5081 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()
DSemaTemplateInstantiateDecl.cpp2424 if (auto *CUSD = dyn_cast<ConstructorUsingShadowDecl>(Shadow)) in VisitUsingDecl()
2462 ConstructorUsingShadowDecl *D) { in VisitConstructorUsingShadowDecl()
DSemaOverload.cpp8652 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()
DSemaInit.cpp5743 if (auto *Shadow = dyn_cast<ConstructorUsingShadowDecl>( in PerformConstructorInitialization()
/external/clang/include/clang/Sema/
DSema.h4268 ConstructorUsingShadowDecl *DerivedShadow);