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.cpp11470 NamedDecl *ParamD; in DiagnoseBadDeduction() local
11471 (ParamD = Param.dyn_cast<TemplateTypeParmDecl*>()) || in DiagnoseBadDeduction()
11472 (ParamD = Param.dyn_cast<NonTypeTemplateParmDecl*>()) || in DiagnoseBadDeduction()
11473 (ParamD = Param.dyn_cast<TemplateTemplateParmDecl*>()); in DiagnoseBadDeduction()
11486 assert(ParamD && "no parameter found for incomplete deduction result"); in DiagnoseBadDeduction()
11489 << ParamD->getDeclName(); in DiagnoseBadDeduction()
11495 assert(ParamD && "no parameter found for incomplete deduction result"); in DiagnoseBadDeduction()
11498 << ParamD->getDeclName() in DiagnoseBadDeduction()
11506 assert(ParamD && "no parameter found for bad qualifiers deduction result"); in DiagnoseBadDeduction()
11507 TemplateTypeParmDecl *TParam = cast<TemplateTypeParmDecl>(ParamD); in DiagnoseBadDeduction()
[all …]
H A DSemaDeclCXX.cpp10696 void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) { in ActOnDelayedCXXMethodParameter() argument
10697 if (!ParamD) in ActOnDelayedCXXMethodParameter()
10700 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD); in ActOnDelayedCXXMethodParameter()
H A DSemaDecl.cpp15188 Declarator ParamD(DS, ParsedAttributesView::none(), in ActOnFinishKNRParamDeclarations() local
15190 ParamD.SetIdentifier(FTI.Params[i].Ident, FTI.Params[i].IdentLoc); in ActOnFinishKNRParamDeclarations()
15191 FTI.Params[i].Param = ActOnParamDeclarator(S, ParamD); in ActOnFinishKNRParamDeclarations()