Home
last modified time | relevance | path

Searched refs:calleeType (Results 1 – 4 of 4) sorted by relevance

/external/deqp-deps/SPIRV-Tools/source/opt/
Dinline_pass.cpp152 analysis::Type* calleeType = context()->get_type_mgr()->GetType(calleeTypeId); in CreateReturnVar() local
153 if (calleeType->AsVoid() == nullptr) { in CreateReturnVar()
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dinline_pass.cpp273 analysis::Type* calleeType = context()->get_type_mgr()->GetType(calleeTypeId); in GenInlineCode() local
274 if (calleeType->AsVoid() == nullptr) { in GenInlineCode()
/external/clang/lib/Analysis/
DCFG.cpp1840 QualType calleeType = C->getCallee()->getType(); in VisitCallExpr() local
1841 if (calleeType == Context->BoundMemberTy) { in VisitCallExpr()
1846 if (!boundType.isNull()) calleeType = boundType; in VisitCallExpr()
1850 bool NoReturn = getFunctionExtInfo(*calleeType).getNoReturn(); in VisitCallExpr()
/external/clang/lib/Sema/
DSemaExpr.cpp419 enum CalleeType { CT_Function, CT_Method, CT_Block } calleeType; in DiagnoseSentinelCalls() local
423 calleeType = CT_Method; in DiagnoseSentinelCalls()
426 calleeType = CT_Function; in DiagnoseSentinelCalls()
433 calleeType = CT_Function; in DiagnoseSentinelCalls()
436 calleeType = CT_Block; in DiagnoseSentinelCalls()
465 Diag(D->getLocation(), diag::note_sentinel_here) << int(calleeType); in DiagnoseSentinelCalls()
482 if (calleeType == CT_Method && PP.isMacroDefined("nil")) in DiagnoseSentinelCalls()
492 Diag(Loc, diag::warn_missing_sentinel) << int(calleeType); in DiagnoseSentinelCalls()
495 << int(calleeType) in DiagnoseSentinelCalls()
497 Diag(D->getLocation(), diag::note_sentinel_here) << int(calleeType); in DiagnoseSentinelCalls()