Lines Matching refs:ValueObjectCast
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 size_t ValueObjectCast::CalculateNumChildren(uint32_t max) { in CalculateNumChildren()
51 std::optional<uint64_t> ValueObjectCast::GetByteSize() { in GetByteSize()
56 lldb::ValueType ValueObjectCast::GetValueType() const { in GetValueType()
61 bool ValueObjectCast::UpdateValue() { in UpdateValue()
92 bool ValueObjectCast::IsInScope() { return m_parent->IsInScope(); } in IsInScope()