Home
last modified time | relevance | path

Searched refs:m_value_type (Results 1 – 2 of 2) sorted by relevance

/src/contrib/llvm-project/lldb/source/Core/
H A DValue.cpp48 : m_value(), m_compiler_type(), m_value_type(ValueType::HostAddress), in Value()
55 m_context(v.m_context), m_value_type(v.m_value_type), in Value()
73 m_value_type = rhs.m_value_type; in operator =()
89 m_value_type = ValueType::HostAddress; in SetBytes()
95 m_value_type = ValueType::HostAddress; in AppendBytes()
105 Value::GetValueTypeAsCString(m_value_type), m_context, in Dump()
109 Value::ValueType Value::GetValueType() const { return m_value_type; } in GetValueType()
112 switch (m_value_type) { in GetValueAddressType()
191 m_value_type = ValueType::HostAddress; in ResizeData()
293 switch (m_value_type) { in GetData()
[all …]
/src/contrib/llvm-project/lldb/include/lldb/Core/
H A DValue.h89 void SetValueType(ValueType value_type) { m_value_type = value_type; } in SetValueType()
154 ValueType m_value_type = ValueType::Scalar; variable