Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DValue.cpp58 m_context_type(v.m_context_type), m_data_buffer() { in Value()
76 m_context_type = rhs.m_context_type; in operator =()
106 Value::GetContextTypeAsCString(m_context_type)); in Dump()
127 if (m_context_type == ContextType::RegisterInfo) in GetRegisterInfo()
133 if (m_context_type == ContextType::LLDBType) in GetType()
184 switch (m_context_type) { in ValueOf()
198 switch (m_context_type) { in GetValueByteSize()
227 switch (m_context_type) { in GetCompilerType()
259 switch (m_context_type) { in GetValueDefaultFormat()
605 if (m_context_type == ContextType::Variable) in GetVariable()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/
H A DValue.h87 ContextType GetContextType() const { return m_context_type; } in GetContextType()
93 m_context_type = ContextType::Invalid; in ClearContext()
97 m_context_type = context_type; in SetContext()
99 if (m_context_type == ContextType::RegisterInfo) { in SetContext()
153 ContextType m_context_type = ContextType::Invalid; variable