Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaOverload.cpp10882 NamedDecl *ParamD; in DiagnoseBadDeduction() local
10883 (ParamD = Param.dyn_cast<TemplateTypeParmDecl*>()) || in DiagnoseBadDeduction()
10884 (ParamD = Param.dyn_cast<NonTypeTemplateParmDecl*>()) || in DiagnoseBadDeduction()
10885 (ParamD = Param.dyn_cast<TemplateTemplateParmDecl*>()); in DiagnoseBadDeduction()
10894 << ParamD->getDeclName(); in DiagnoseBadDeduction()
10903 << ParamD->getDeclName() in DiagnoseBadDeduction()
10930 << ParamD->getDeclName() << Arg << NonCanonParam; in DiagnoseBadDeduction()
10938 if (isa<TemplateTypeParmDecl>(ParamD)) in DiagnoseBadDeduction()
10940 else if (isa<NonTypeTemplateParmDecl>(ParamD)) { in DiagnoseBadDeduction()
10982 if (ParamD->getDeclName()) in DiagnoseBadDeduction()
[all …]
H A DSemaDeclCXX.cpp10388 void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) { in ActOnDelayedCXXMethodParameter() argument
10389 if (!ParamD) in ActOnDelayedCXXMethodParameter()
10392 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD); in ActOnDelayedCXXMethodParameter()
H A DSemaDecl.cpp14496 Declarator ParamD(DS, ParsedAttributesView::none(), in ActOnFinishKNRParamDeclarations() local
14498 ParamD.SetIdentifier(FTI.Params[i].Ident, FTI.Params[i].IdentLoc); in ActOnFinishKNRParamDeclarations()
14499 FTI.Params[i].Param = ActOnParamDeclarator(S, ParamD); in ActOnFinishKNRParamDeclarations()