Searched refs:ParamD (Results 1 – 3 of 3) sorted by relevance
12178 NamedDecl *ParamD; in DiagnoseBadDeduction() local12179 (ParamD = Param.dyn_cast<TemplateTypeParmDecl*>()) || in DiagnoseBadDeduction()12180 (ParamD = Param.dyn_cast<NonTypeTemplateParmDecl*>()) || in DiagnoseBadDeduction()12181 (ParamD = Param.dyn_cast<TemplateTemplateParmDecl*>()); in DiagnoseBadDeduction()12194 assert(ParamD && "no parameter found for incomplete deduction result"); in DiagnoseBadDeduction()12197 << ParamD->getDeclName(); in DiagnoseBadDeduction()12203 assert(ParamD && "no parameter found for incomplete deduction result"); in DiagnoseBadDeduction()12206 << ParamD->getDeclName() in DiagnoseBadDeduction()12214 assert(ParamD && "no parameter found for bad qualifiers deduction result"); in DiagnoseBadDeduction()12215 TemplateTypeParmDecl *TParam = cast<TemplateTypeParmDecl>(ParamD); in DiagnoseBadDeduction()[all …]
10916 void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) { in ActOnDelayedCXXMethodParameter() argument10917 if (!ParamD) in ActOnDelayedCXXMethodParameter()10920 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD); in ActOnDelayedCXXMethodParameter()
15624 Declarator ParamD(DS, ParsedAttributesView::none(), in ActOnFinishKNRParamDeclarations() local15626 ParamD.SetIdentifier(FTI.Params[i].Ident, FTI.Params[i].IdentLoc); in ActOnFinishKNRParamDeclarations()15627 FTI.Params[i].Param = ActOnParamDeclarator(S, ParamD); in ActOnFinishKNRParamDeclarations()