Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaOverload.cpp11440 NamedDecl *ParamD; in DiagnoseBadDeduction() local
11441 (ParamD = Param.dyn_cast<TemplateTypeParmDecl*>()) || in DiagnoseBadDeduction()
11442 (ParamD = Param.dyn_cast<NonTypeTemplateParmDecl*>()) || in DiagnoseBadDeduction()
11443 (ParamD = Param.dyn_cast<TemplateTemplateParmDecl*>()); in DiagnoseBadDeduction()
11452 << ParamD->getDeclName(); in DiagnoseBadDeduction()
11461 << ParamD->getDeclName() in DiagnoseBadDeduction()
11488 << ParamD->getDeclName() << Arg << NonCanonParam; in DiagnoseBadDeduction()
11496 if (isa<TemplateTypeParmDecl>(ParamD)) in DiagnoseBadDeduction()
11498 else if (isa<NonTypeTemplateParmDecl>(ParamD)) { in DiagnoseBadDeduction()
11540 if (ParamD->getDeclName()) in DiagnoseBadDeduction()
[all …]
H A DSemaDeclCXX.cpp10773 void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) { in ActOnDelayedCXXMethodParameter() argument
10774 if (!ParamD) in ActOnDelayedCXXMethodParameter()
10777 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD); in ActOnDelayedCXXMethodParameter()
H A DSemaDecl.cpp15422 Declarator ParamD(DS, ParsedAttributesView::none(), in ActOnFinishKNRParamDeclarations() local
15424 ParamD.SetIdentifier(FTI.Params[i].Ident, FTI.Params[i].IdentLoc); in ActOnFinishKNRParamDeclarations()
15425 FTI.Params[i].Param = ActOnParamDeclarator(S, ParamD); in ActOnFinishKNRParamDeclarations()