Lines Matching refs:DerivedCtor
13107 CXXConstructorDecl *DerivedCtor = CXXConstructorDecl::Create( in findInheritingConstructor() local
13115 DerivedCtor->setInvalidDecl(); in findInheritingConstructor()
13121 EPI.ExceptionSpec.SourceDecl = DerivedCtor; in findInheritingConstructor()
13122 DerivedCtor->setType(Context.getFunctionType(FPT->getReturnType(), in findInheritingConstructor()
13131 Context, DerivedCtor, UsingLoc, UsingLoc, /*IdentifierInfo=*/nullptr, in findInheritingConstructor()
13144 DerivedCtor->setAccess(BaseCtor->getAccess()); in findInheritingConstructor()
13145 DerivedCtor->setParams(ParamDecls); in findInheritingConstructor()
13146 Derived->addDecl(DerivedCtor); in findInheritingConstructor()
13148 if (ShouldDeleteSpecialMember(DerivedCtor, CXXDefaultConstructor, &ICI)) in findInheritingConstructor()
13149 SetDeclDeleted(DerivedCtor, UsingLoc); in findInheritingConstructor()
13151 return DerivedCtor; in findInheritingConstructor()