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

/external/clang/lib/Analysis/
H A DCFG.cpp1384 QualType calleeType = C->getCallee()->getType(); local
1385 if (calleeType == Context->BoundMemberTy) {
1390 if (!boundType.isNull()) calleeType = boundType;
1394 bool NoReturn = getFunctionExtInfo(*calleeType).getNoReturn();
/external/clang/lib/Sema/
H A DSemaExpr.cpp301 enum CalleeType { CT_Function, CT_Method, CT_Block } calleeType; local
305 calleeType = CT_Method;
308 calleeType = CT_Function;
315 calleeType = CT_Function;
318 calleeType = CT_Block;
347 Diag(D->getLocation(), diag::note_sentinel_here) << calleeType;
364 if (calleeType == CT_Method &&
373 Diag(Loc, diag::warn_missing_sentinel) << calleeType;
376 << calleeType
378 Diag(D->getLocation(), diag::note_sentinel_here) << calleeType;
[all...]

Completed in 81 milliseconds