Searched refs:ValueObjectCast (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | ValueObjectCast.cpp | 25 lldb::ValueObjectSP ValueObjectCast::Create(ValueObject &parent, in Create() 28 ValueObjectCast *cast_valobj_ptr = in Create() 29 new ValueObjectCast(parent, name, cast_type); in Create() 33 ValueObjectCast::ValueObjectCast(ValueObject &parent, ConstString name, in ValueObjectCast() function in ValueObjectCast 40 ValueObjectCast::~ValueObjectCast() = default; 42 CompilerType ValueObjectCast::GetCompilerTypeImpl() { return m_cast_type; } in GetCompilerTypeImpl() 44 llvm::Expected<uint32_t> ValueObjectCast::CalculateNumChildren(uint32_t max) { in CalculateNumChildren() 53 std::optional<uint64_t> ValueObjectCast::GetByteSize() { in GetByteSize() 58 lldb::ValueType ValueObjectCast::GetValueType() const { in GetValueType() 63 bool ValueObjectCast::UpdateValue() { in UpdateValue() [all …]
|
H A D | ValueObjectConstResultCast.cpp | 26 : ValueObjectCast(parent, name, cast_type), m_impl(this, live_address) { in ValueObjectConstResultCast()
|
H A D | ValueObject.cpp | 2938 return ValueObjectCast::Create(*this, GetName(), compiler_type); in DoCast() 2976 return ValueObjectCast::Create(*this, new_name, GetCompilerType()); in Clone()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
H A D | ValueObjectCast.h | 26 class ValueObjectCast : public ValueObject { 28 ~ValueObjectCast() override; 51 ValueObjectCast(ValueObject &parent, ConstString name, 61 ValueObjectCast(const ValueObjectCast &) = delete; 62 const ValueObjectCast &operator=(const ValueObjectCast &) = delete;
|
H A D | ValueObjectConstResultCast.h | 28 class ValueObjectConstResultCast : public ValueObjectCast { 39 return ValueObjectCast::GetCompilerType(); in GetCompilerType()
|
/freebsd/lib/clang/liblldb/ |
H A D | Makefile | 205 SRCS+= Core/ValueObjectCast.cpp
|