Home
last modified time | relevance | path

Searched refs:CallableType (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaFunctionEffects.cpp104 enum class CallableType : uint8_t { enum
227 CallableType CType = CallableType::Unknown;
244 CType = CallableType::Function; in CallableInfo()
247 CType = CallableType::Virtual; in CallableInfo()
250 CType = CallableType::Block; in CallableInfo()
259 CallableType type() const { return CType; } in type()
262 return CType == CallableType::Function || CType == CallableType::Block; in isCalledDirectly()
267 case CallableType::Unknown: in isVerifiable()
268 case CallableType::Virtual: in isVerifiable()
270 case CallableType::Block: in isVerifiable()
[all …]
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/
H A DRetainPtrCtorAdoptChecker.cpp401 template <typename CallableType>
402 std::optional<bool> retainsReturnValue(const CallableType *FnDecl) const { in retainsReturnValue()