Lines Matching refs:ValueObjectCast
24 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()
91 bool ValueObjectCast::IsInScope() { return m_parent->IsInScope(); } in IsInScope()