Searched refs:ParamD (Results 1 – 3 of 3) sorted by relevance
9388 NamedDecl *ParamD; in DiagnoseBadDeduction() local9389 (ParamD = Param.dyn_cast<TemplateTypeParmDecl*>()) || in DiagnoseBadDeduction()9390 (ParamD = Param.dyn_cast<NonTypeTemplateParmDecl*>()) || in DiagnoseBadDeduction()9391 (ParamD = Param.dyn_cast<TemplateTemplateParmDecl*>()); in DiagnoseBadDeduction()9397 assert(ParamD && "no parameter found for incomplete deduction result"); in DiagnoseBadDeduction()9400 << ParamD->getDeclName(); in DiagnoseBadDeduction()9406 assert(ParamD && "no parameter found for bad qualifiers deduction result"); in DiagnoseBadDeduction()9407 TemplateTypeParmDecl *TParam = cast<TemplateTypeParmDecl>(ParamD); in DiagnoseBadDeduction()9425 << ParamD->getDeclName() << Arg << NonCanonParam; in DiagnoseBadDeduction()9431 assert(ParamD && "no parameter found for inconsistent deduction result"); in DiagnoseBadDeduction()[all …]
6758 void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) { in ActOnDelayedCXXMethodParameter() argument6759 if (!ParamD) in ActOnDelayedCXXMethodParameter()6762 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD); in ActOnDelayedCXXMethodParameter()
11063 Declarator ParamD(DS, Declarator::KNRTypeListContext); in ActOnFinishKNRParamDeclarations() local11064 ParamD.SetIdentifier(FTI.Params[i].Ident, FTI.Params[i].IdentLoc); in ActOnFinishKNRParamDeclarations()11065 FTI.Params[i].Param = ActOnParamDeclarator(S, ParamD); in ActOnFinishKNRParamDeclarations()