Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DScalar.cpp286 template <typename T> T Scalar::GetAs(T fail_value) const { in GetAs() function in Scalar
304 return GetAs<signed char>(fail_value); in SChar()
308 return GetAs<unsigned char>(fail_value); in UChar()
312 return GetAs<short>(fail_value); in SShort()
316 return GetAs<unsigned short>(fail_value); in UShort()
319 int Scalar::SInt(int fail_value) const { return GetAs<int>(fail_value); } in SInt()
322 return GetAs<unsigned int>(fail_value); in UInt()
325 long Scalar::SLong(long fail_value) const { return GetAs<long>(fail_value); } in SLong()
328 return GetAs<unsigned long>(fail_value); in ULong()
332 return GetAs<long long>(fail_value); in SLongLong()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DScalar.h203 template <typename T> T GetAs(T fail_value) const;