Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaOverload.cpp9259 NamedDecl *ParamD; in DiagnoseBadDeduction() local
9260 (ParamD = Param.dyn_cast<TemplateTypeParmDecl*>()) || in DiagnoseBadDeduction()
9261 (ParamD = Param.dyn_cast<NonTypeTemplateParmDecl*>()) || in DiagnoseBadDeduction()
9262 (ParamD = Param.dyn_cast<TemplateTemplateParmDecl*>()); in DiagnoseBadDeduction()
9268 assert(ParamD && "no parameter found for incomplete deduction result"); in DiagnoseBadDeduction()
9271 << ParamD->getDeclName(); in DiagnoseBadDeduction()
9277 assert(ParamD && "no parameter found for bad qualifiers deduction result"); in DiagnoseBadDeduction()
9278 TemplateTypeParmDecl *TParam = cast<TemplateTypeParmDecl>(ParamD); in DiagnoseBadDeduction()
9296 << ParamD->getDeclName() << Arg << NonCanonParam; in DiagnoseBadDeduction()
9302 assert(ParamD && "no parameter found for inconsistent deduction result"); in DiagnoseBadDeduction()
[all …]
DSemaDeclCXX.cpp6595 void Sema::ActOnDelayedCXXMethodParameter(Scope *S, Decl *ParamD) { in ActOnDelayedCXXMethodParameter() argument
6596 if (!ParamD) in ActOnDelayedCXXMethodParameter()
6599 ParmVarDecl *Param = cast<ParmVarDecl>(ParamD); in ActOnDelayedCXXMethodParameter()
DSemaDecl.cpp10653 Declarator ParamD(DS, Declarator::KNRTypeListContext); in ActOnFinishKNRParamDeclarations() local
10654 ParamD.SetIdentifier(FTI.Params[i].Ident, FTI.Params[i].IdentLoc); in ActOnFinishKNRParamDeclarations()
10655 FTI.Params[i].Param = ActOnParamDeclarator(S, ParamD); in ActOnFinishKNRParamDeclarations()