Searched refs:OuterCtor (Results 1 – 4 of 4) sorted by relevance
511 const auto *OuterCtor = dyn_cast_or_null<CXXConstructExpr>( in handleConstructor() local514 (!OuterCtor || in handleConstructor()515 OuterCtor->getConstructionKind() == CXXConstructExpr::CK_Complete || in handleConstructor()516 OuterCtor->getConstructionKind() == CXXConstructExpr::CK_Delegating) && in handleConstructor()519 (void)OuterCtor; in handleConstructor()
254 const CXXConstructExpr *OuterCtor = dyn_cast<CXXConstructExpr>(Outer); in VisitCXXConstructExpr() local255 if (OuterCtor) { in VisitCXXConstructExpr()256 switch (OuterCtor->getConstructionKind()) { in VisitCXXConstructExpr()
2196 const auto *OuterCtor = cast<CXXConstructorDecl>(CurCodeDecl); in EmitInheritedCXXConstructorCall() local2197 assert(OuterCtor->getNumParams() == D->getNumParams()); in EmitInheritedCXXConstructorCall()2198 assert(!OuterCtor->isVariadic() && "should have been inlined"); in EmitInheritedCXXConstructorCall()2200 for (const auto *Param : OuterCtor->parameters()) { in EmitInheritedCXXConstructorCall()2202 OuterCtor->getParamDecl(Param->getFunctionScopeIndex())->getType(), in EmitInheritedCXXConstructorCall()
2228 const auto *OuterCtor = cast<CXXConstructorDecl>(CurCodeDecl); in EmitInheritedCXXConstructorCall() local2229 assert(OuterCtor->getNumParams() == D->getNumParams()); in EmitInheritedCXXConstructorCall()2230 assert(!OuterCtor->isVariadic() && "should have been inlined"); in EmitInheritedCXXConstructorCall()2232 for (const auto *Param : OuterCtor->parameters()) { in EmitInheritedCXXConstructorCall()2234 OuterCtor->getParamDecl(Param->getFunctionScopeIndex())->getType(), in EmitInheritedCXXConstructorCall()