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

References

tools/lldb/include/lldb/Interpreter/OptionValueBoolean.h
   41     m_current_value = m_default_value;
   64   explicit operator bool() const { return m_current_value; }
   67     m_current_value = b;
   68     return m_current_value;
   71   bool GetCurrentValue() const { return m_current_value; }
   75   void SetCurrentValue(bool value) { m_current_value = value; }
tools/lldb/source/Interpreter/OptionValueBoolean.cpp
   29     strm.PutCString(m_current_value ? "true" : "false");
   48       m_current_value = value;