Home
last modified time | relevance | path

Searched refs:ParamD (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOverload.cpp12178 NamedDecl *ParamD; in DiagnoseBadDeduction() local
12179 (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 …]
H A DSemaDeclCXX.cpp10916 void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) { in ActOnDelayedCXXMethodParameter() argument
10917 if (!ParamD) in ActOnDelayedCXXMethodParameter()
10920 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD); in ActOnDelayedCXXMethodParameter()
H A DSemaDecl.cpp15624 Declarator ParamD(DS, ParsedAttributesView::none(), in ActOnFinishKNRParamDeclarations() local
15626 ParamD.SetIdentifier(FTI.Params[i].Ident, FTI.Params[i].IdentLoc); in ActOnFinishKNRParamDeclarations()
15627 FTI.Params[i].Param = ActOnParamDeclarator(S, ParamD); in ActOnFinishKNRParamDeclarations()