Home
last modified time | relevance | path

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

/freebsd-src/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueEnumeration.cpp29 const size_t count = m_enumerations.GetSize(); in DumpValue()
31 if (m_enumerations.GetValueAtIndexUnchecked(i).value == m_current_value) { in DumpValue()
32 strm.PutCString(m_enumerations.GetCStringAtIndex(i).GetStringRef()); in DumpValue()
53 m_enumerations.FindFirstValueForName(const_enumerator_name); in SetValueFromString()
60 const size_t count = m_enumerations.GetSize(); in SetValueFromString()
63 m_enumerations.GetCStringAtIndex(0).GetCString()); in SetValueFromString()
66 m_enumerations.GetCStringAtIndex(i).GetCString()); in SetValueFromString()
87 m_enumerations.Clear(); in SetEnumerations()
92 m_enumerations.Append(const_enumerator_name, enumerator_info); in SetEnumerations()
95 m_enumerations.Sort(); in SetEnumerations()
[all …]
/freebsd-src/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueEnumeration.h76 EnumerationMap m_enumerations; variable