Home | History | Annotate | Download | only in Sema

Lines Matching refs:NDecl

4561   NamedDecl *NDecl = nullptr;
4567 NDecl = cast<DeclRefExpr>(NakedFn)->getDecl();
4569 NDecl = cast<MemberExpr>(NakedFn)->getMemberDecl();
4571 if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(NDecl)) {
4586 return BuildResolvedCallExpr(Fn, NDecl, LParenLoc, ArgExprs, RParenLoc,
4645 /// \param NDecl the declaration being called, if available
4647 Sema::BuildResolvedCallExpr(Expr *Fn, NamedDecl *NDecl,
4652 FunctionDecl *FDecl = dyn_cast_or_null<FunctionDecl>(NDecl);
4803 if (NDecl)
4804 DiagnoseSentinelCalls(NDecl, LParenLoc, Args);
4813 } else if (NDecl) {
4814 if (CheckPointerCall(NDecl, TheCall, Proto))