Searched refs:ParamD (Results 1 – 3 of 3) sorted by relevance
11029 NamedDecl *ParamD; in DiagnoseBadDeduction() local11030 (ParamD = Param.dyn_cast<TemplateTypeParmDecl*>()) || in DiagnoseBadDeduction()11031 (ParamD = Param.dyn_cast<NonTypeTemplateParmDecl*>()) || in DiagnoseBadDeduction()11032 (ParamD = Param.dyn_cast<TemplateTemplateParmDecl*>()); in DiagnoseBadDeduction()11038 assert(ParamD && "no parameter found for incomplete deduction result"); in DiagnoseBadDeduction()11041 << ParamD->getDeclName(); in DiagnoseBadDeduction()11047 assert(ParamD && "no parameter found for incomplete deduction result"); in DiagnoseBadDeduction()11050 << ParamD->getDeclName() in DiagnoseBadDeduction()11058 assert(ParamD && "no parameter found for bad qualifiers deduction result"); in DiagnoseBadDeduction()11059 TemplateTypeParmDecl *TParam = cast<TemplateTypeParmDecl>(ParamD); in DiagnoseBadDeduction()[all …]
10476 void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) { in ActOnDelayedCXXMethodParameter() argument10477 if (!ParamD) in ActOnDelayedCXXMethodParameter()10480 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD); in ActOnDelayedCXXMethodParameter()
14886 Declarator ParamD(DS, ParsedAttributesView::none(), in ActOnFinishKNRParamDeclarations() local14888 ParamD.SetIdentifier(FTI.Params[i].Ident, FTI.Params[i].IdentLoc); in ActOnFinishKNRParamDeclarations()14889 FTI.Params[i].Param = ActOnParamDeclarator(S, ParamD); in ActOnFinishKNRParamDeclarations()