HomeSort by: relevance | last modified time | path
    Searched defs:calleeType (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Analysis/
CFG.cpp 2595 QualType calleeType = C->getCallee()->getType();
2596 if (calleeType == Context->BoundMemberTy) {
2601 if (!boundType.isNull()) calleeType = boundType;
2605 bool NoReturn = getFunctionExtInfo(*calleeType).getNoReturn();
CFG.cpp 2595 QualType calleeType = C->getCallee()->getType();
2596 if (calleeType == Context->BoundMemberTy) {
2601 if (!boundType.isNull()) calleeType = boundType;
2605 bool NoReturn = getFunctionExtInfo(*calleeType).getNoReturn();
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExpr.cpp 397 enum CalleeType { CT_Function, CT_Method, CT_Block } calleeType;
401 calleeType = CT_Method;
404 calleeType = CT_Function;
411 calleeType = CT_Function;
414 calleeType = CT_Block;
443 Diag(D->getLocation(), diag::note_sentinel_here) << int(calleeType);
459 if (calleeType == CT_Method && PP.isMacroDefined("nil"))
469 Diag(Loc, diag::warn_missing_sentinel) << int(calleeType);
472 << int(calleeType)
    [all...]
SemaExpr.cpp 397 enum CalleeType { CT_Function, CT_Method, CT_Block } calleeType;
401 calleeType = CT_Method;
404 calleeType = CT_Function;
411 calleeType = CT_Function;
414 calleeType = CT_Block;
443 Diag(D->getLocation(), diag::note_sentinel_here) << int(calleeType);
459 if (calleeType == CT_Method && PP.isMacroDefined("nil"))
469 Diag(Loc, diag::warn_missing_sentinel) << int(calleeType);
472 << int(calleeType)
    [all...]

Completed in 44 milliseconds