Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaOverload.cpp11029 NamedDecl *ParamD; in DiagnoseBadDeduction() local
11030 (ParamD = Param.dyn_cast<TemplateTypeParmDecl*>()) || in DiagnoseBadDeduction()
11031 (ParamD = Param.dyn_cast<NonTypeTemplateParmDecl*>()) || in DiagnoseBadDeduction()
11032 (ParamD = Param.dyn_cast<TemplateTemplateParmDecl*>()); in DiagnoseBadDeduction()
11038 assert(ParamD && "no parameter found for incomplete deduction result"); in DiagnoseBadDeduction()
11041 << ParamD->getDeclName(); in DiagnoseBadDeduction()
11047 assert(ParamD && "no parameter found for incomplete deduction result"); in DiagnoseBadDeduction()
11050 << ParamD->getDeclName() in DiagnoseBadDeduction()
11058 assert(ParamD && "no parameter found for bad qualifiers deduction result"); in DiagnoseBadDeduction()
11059 TemplateTypeParmDecl *TParam = cast<TemplateTypeParmDecl>(ParamD); in DiagnoseBadDeduction()
[all …]
H A DSemaDeclCXX.cpp10476 void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) { in ActOnDelayedCXXMethodParameter() argument
10477 if (!ParamD) in ActOnDelayedCXXMethodParameter()
10480 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD); in ActOnDelayedCXXMethodParameter()
H A DSemaDecl.cpp14886 Declarator ParamD(DS, ParsedAttributesView::none(), in ActOnFinishKNRParamDeclarations() local
14888 ParamD.SetIdentifier(FTI.Params[i].Ident, FTI.Params[i].IdentLoc); in ActOnFinishKNRParamDeclarations()
14889 FTI.Params[i].Param = ActOnParamDeclarator(S, ParamD); in ActOnFinishKNRParamDeclarations()