Home
last modified time | relevance | path

Searched refs:calleeType (Results 1 – 2 of 2) sorted by relevance

/external/clang/lib/Analysis/
DCFG.cpp1445 QualType calleeType = C->getCallee()->getType(); in VisitCallExpr() local
1446 if (calleeType == Context->BoundMemberTy) { in VisitCallExpr()
1451 if (!boundType.isNull()) calleeType = boundType; in VisitCallExpr()
1455 bool NoReturn = getFunctionExtInfo(*calleeType).getNoReturn(); in VisitCallExpr()
/external/clang/lib/Sema/
DSemaExpr.cpp346 enum CalleeType { CT_Function, CT_Method, CT_Block } calleeType; in DiagnoseSentinelCalls() local
350 calleeType = CT_Method; in DiagnoseSentinelCalls()
353 calleeType = CT_Function; in DiagnoseSentinelCalls()
360 calleeType = CT_Function; in DiagnoseSentinelCalls()
363 calleeType = CT_Block; in DiagnoseSentinelCalls()
392 Diag(D->getLocation(), diag::note_sentinel_here) << int(calleeType); in DiagnoseSentinelCalls()
409 if (calleeType == CT_Method && in DiagnoseSentinelCalls()
418 Diag(Loc, diag::warn_missing_sentinel) << int(calleeType); in DiagnoseSentinelCalls()
421 << int(calleeType) in DiagnoseSentinelCalls()
423 Diag(D->getLocation(), diag::note_sentinel_here) << int(calleeType); in DiagnoseSentinelCalls()