Home
last modified time | relevance | path

Searched refs:ValueObjectCast (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValueObjectCast.cpp25 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 DValueObjectConstResultCast.cpp26 : ValueObjectCast(parent, name, cast_type), m_impl(this, live_address) { in ValueObjectConstResultCast()
H A DValueObject.cpp2938 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 DValueObjectCast.h26 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 DValueObjectConstResultCast.h28 class ValueObjectConstResultCast : public ValueObjectCast {
39 return ValueObjectCast::GetCompilerType(); in GetCompilerType()
/freebsd/lib/clang/liblldb/
H A DMakefile205 SRCS+= Core/ValueObjectCast.cpp