Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaOverload.cpp10721 NamedDecl *ParamD; in DiagnoseBadDeduction() local
10722 (ParamD = Param.dyn_cast<TemplateTypeParmDecl*>()) || in DiagnoseBadDeduction()
10723 (ParamD = Param.dyn_cast<NonTypeTemplateParmDecl*>()) || in DiagnoseBadDeduction()
10724 (ParamD = Param.dyn_cast<TemplateTemplateParmDecl*>()); in DiagnoseBadDeduction()
10733 << ParamD->getDeclName(); in DiagnoseBadDeduction()
10742 << ParamD->getDeclName() in DiagnoseBadDeduction()
10769 << ParamD->getDeclName() << Arg << NonCanonParam; in DiagnoseBadDeduction()
10777 if (isa<TemplateTypeParmDecl>(ParamD)) in DiagnoseBadDeduction()
10779 else if (isa<NonTypeTemplateParmDecl>(ParamD)) { in DiagnoseBadDeduction()
10821 if (ParamD->getDeclName()) in DiagnoseBadDeduction()
[all …]
H A DSemaDeclCXX.cpp10195 void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) { in ActOnDelayedCXXMethodParameter() argument
10196 if (!ParamD) in ActOnDelayedCXXMethodParameter()
10199 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD); in ActOnDelayedCXXMethodParameter()
H A DSemaDecl.cpp13988 Declarator ParamD(DS, DeclaratorContext::KNRTypeList); in ActOnFinishKNRParamDeclarations() local
13989 ParamD.SetIdentifier(FTI.Params[i].Ident, FTI.Params[i].IdentLoc); in ActOnFinishKNRParamDeclarations()
13990 FTI.Params[i].Param = ActOnParamDeclarator(S, ParamD); in ActOnFinishKNRParamDeclarations()