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

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

Completed in 100 milliseconds