Searched refs:InheritedConstructor (Results 1 – 6 of 6) sorted by relevance
/external/clang/include/clang/AST/ |
D | DeclCXX.h | 2161 class InheritedConstructor { 2166 InheritedConstructor() : Shadow(), BaseCtor() {} in InheritedConstructor() function 2167 InheritedConstructor(ConstructorUsingShadowDecl *Shadow, in InheritedConstructor() function 2189 private llvm::TrailingObjects<CXXConstructorDecl, InheritedConstructor> { 2212 InheritedConstructor Inherited) in CXXConstructorDecl() 2220 *getTrailingObjects<InheritedConstructor>() = Inherited; in CXXConstructorDecl() 2231 InheritedConstructor Inherited = InheritedConstructor()); 2383 InheritedConstructor getInheritedConstructor() const { in getInheritedConstructor() 2384 return IsInheritingConstructor ? *getTrailingObjects<InheritedConstructor>() in getInheritedConstructor() 2385 : InheritedConstructor(); in getInheritedConstructor()
|
/external/clang/lib/CodeGen/ |
D | CodeGenTypes.h | 212 bool inheritingCtorHasParams(const InheritedConstructor &Inherited,
|
D | CGCall.cpp | 249 const InheritedConstructor &Inherited, CXXCtorType Type) { in inheritingCtorHasParams()
|
/external/clang/lib/AST/ |
D | DeclCXX.cpp | 1813 unsigned Extra = additionalSizeToAlloc<InheritedConstructor>(Inherited); in CreateDeserialized() 1816 false, false, false, false, InheritedConstructor()); in CreateDeserialized() 1828 InheritedConstructor Inherited) { in Create() 1833 additionalSizeToAlloc<InheritedConstructor>(Inherited ? 1 : 0); in Create()
|
/external/clang/lib/Serialization/ |
D | ASTReaderDecl.cpp | 1787 *D->getTrailingObjects<InheritedConstructor>() = in VisitCXXConstructorDecl() 1788 InheritedConstructor(Shadow, Ctor); in VisitCXXConstructorDecl()
|
/external/clang/lib/Sema/ |
D | SemaDeclCXX.cpp | 9283 InheritedConstructor(Shadow, BaseCtor)); in findInheritingConstructor()
|