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

/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Analysis/
H A DCFG.cpp1454 QualType calleeType = C->getCallee()->getType(); local
1455 if (calleeType == Context->BoundMemberTy) {
1460 if (!boundType.isNull()) calleeType = boundType;
1464 bool NoReturn = getFunctionExtInfo(*calleeType).getNoReturn();
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExpr.cpp347 enum CalleeType { CT_Function, CT_Method, CT_Block } calleeType; local
351 calleeType = CT_Method;
354 calleeType = CT_Function;
361 calleeType = CT_Function;
364 calleeType = CT_Block;
393 Diag(D->getLocation(), diag::note_sentinel_here) << int(calleeType);
410 if (calleeType == CT_Method &&
419 Diag(Loc, diag::warn_missing_sentinel) << int(calleeType);
422 << int(calleeType)
424 Diag(D->getLocation(), diag::note_sentinel_here) << int(calleeType);
[all...]

Completed in 73 milliseconds