reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/include/lldb/Interpreter/OptionValueEnumeration.h
   51     m_current_value = m_default_value;
   64     m_current_value = value;
   65     return m_current_value;
   68   enum_type GetCurrentValue() const { return m_current_value; }
   72   void SetCurrentValue(enum_type value) { m_current_value = value; }
tools/lldb/source/Interpreter/OptionValueEnumeration.cpp
   34       if (m_enumerations.GetValueAtIndexUnchecked(i).value == m_current_value) {
   39     strm.Printf("%" PRIu64, (uint64_t)m_current_value);
   58       m_current_value = enumerator_entry->value.value;