Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaOverload.cpp9388 NamedDecl *ParamD; in DiagnoseBadDeduction() local
9389 (ParamD = Param.dyn_cast<TemplateTypeParmDecl*>()) || in DiagnoseBadDeduction()
9390 (ParamD = Param.dyn_cast<NonTypeTemplateParmDecl*>()) || in DiagnoseBadDeduction()
9391 (ParamD = Param.dyn_cast<TemplateTemplateParmDecl*>()); in DiagnoseBadDeduction()
9397 assert(ParamD && "no parameter found for incomplete deduction result"); in DiagnoseBadDeduction()
9400 << ParamD->getDeclName(); in DiagnoseBadDeduction()
9406 assert(ParamD && "no parameter found for bad qualifiers deduction result"); in DiagnoseBadDeduction()
9407 TemplateTypeParmDecl *TParam = cast<TemplateTypeParmDecl>(ParamD); in DiagnoseBadDeduction()
9425 << ParamD->getDeclName() << Arg << NonCanonParam; in DiagnoseBadDeduction()
9431 assert(ParamD && "no parameter found for inconsistent deduction result"); in DiagnoseBadDeduction()
[all …]
DSemaDeclCXX.cpp6758 void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) { in ActOnDelayedCXXMethodParameter() argument
6759 if (!ParamD) in ActOnDelayedCXXMethodParameter()
6762 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD); in ActOnDelayedCXXMethodParameter()
DSemaDecl.cpp11063 Declarator ParamD(DS, Declarator::KNRTypeListContext); in ActOnFinishKNRParamDeclarations() local
11064 ParamD.SetIdentifier(FTI.Params[i].Ident, FTI.Params[i].IdentLoc); in ActOnFinishKNRParamDeclarations()
11065 FTI.Params[i].Param = ActOnParamDeclarator(S, ParamD); in ActOnFinishKNRParamDeclarations()