Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DValueObjectCast.cpp24 lldb::ValueObjectSP ValueObjectCast::Create(ValueObject &parent, in Create()
27 ValueObjectCast *cast_valobj_ptr = in Create()
28 new ValueObjectCast(parent, name, cast_type); in Create()
32 ValueObjectCast::ValueObjectCast(ValueObject &parent, ConstString name, in ValueObjectCast() function in ValueObjectCast
39 ValueObjectCast::~ValueObjectCast() = default;
41 CompilerType ValueObjectCast::GetCompilerTypeImpl() { return m_cast_type; } in GetCompilerTypeImpl()
43 size_t ValueObjectCast::CalculateNumChildren(uint32_t max) { in CalculateNumChildren()
50 llvm::Optional<uint64_t> ValueObjectCast::GetByteSize() { in GetByteSize()
55 lldb::ValueType ValueObjectCast::GetValueType() const { in GetValueType()
60 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.cpp2763 return ValueObjectCast::Create(*this, GetName(), compiler_type); in Cast()
2767 return ValueObjectCast::Create(*this, new_name, GetCompilerType()); in Clone()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObjectCast.h25 class ValueObjectCast : public ValueObject {
27 ~ValueObjectCast() override;
50 ValueObjectCast(ValueObject &parent, ConstString name,
60 ValueObjectCast(const ValueObjectCast &) = delete;
61 const ValueObjectCast &operator=(const ValueObjectCast &) = delete;
H A DValueObjectConstResultCast.h28 class ValueObjectConstResultCast : public ValueObjectCast {
42 return ValueObjectCast::GetCompilerType(); in GetCompilerType()
/freebsd-13.1/lib/clang/liblldb/
H A DMakefile183 SRCS+= Core/ValueObjectCast.cpp