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

/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Analysis/
H A DCFG.cpp1840 QualType calleeType = C->getCallee()->getType(); local
1841 if (calleeType == Context->BoundMemberTy) {
1846 if (!boundType.isNull()) calleeType = boundType;
1850 bool NoReturn = getFunctionExtInfo(*calleeType).getNoReturn();
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExpr.cpp407 enum CalleeType { CT_Function, CT_Method, CT_Block } calleeType; local
411 calleeType = CT_Method;
414 calleeType = CT_Function;
421 calleeType = CT_Function;
424 calleeType = CT_Block;
453 Diag(D->getLocation(), diag::note_sentinel_here) << int(calleeType);
470 if (calleeType == CT_Method && PP.isMacroDefined("nil"))
480 Diag(Loc, diag::warn_missing_sentinel) << int(calleeType);
483 << int(calleeType)
485 Diag(D->getLocation(), diag::note_sentinel_here) << int(calleeType);
[all...]

Completed in 131 milliseconds