Home
last modified time | relevance | path

Searched refs:InheritedConstructor (Results 1 – 6 of 6) sorted by relevance

/external/clang/include/clang/AST/
DDeclCXX.h2161 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/
DCodeGenTypes.h212 bool inheritingCtorHasParams(const InheritedConstructor &Inherited,
DCGCall.cpp249 const InheritedConstructor &Inherited, CXXCtorType Type) { in inheritingCtorHasParams()
/external/clang/lib/AST/
DDeclCXX.cpp1813 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/
DASTReaderDecl.cpp1787 *D->getTrailingObjects<InheritedConstructor>() = in VisitCXXConstructorDecl()
1788 InheritedConstructor(Shadow, Ctor); in VisitCXXConstructorDecl()
/external/clang/lib/Sema/
DSemaDeclCXX.cpp9283 InheritedConstructor(Shadow, BaseCtor)); in findInheritingConstructor()