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

References

tools/lldb/include/lldb/Interpreter/OptionGroupFormat.h
   55   OptionValueUInt64 &GetCountValue() { return m_count; }
   57   const OptionValueUInt64 &GetCountValue() const { return m_count; }
   63            m_count.OptionWasSet();
tools/lldb/source/Interpreter/OptionGroupFormat.cpp
   47     if (m_count.GetDefaultValue() < UINT64_MAX)
   67     if (m_count.GetDefaultValue() == 0) {
   70       error = m_count.SetValueFromString(option_arg);
   71       if (m_count.GetCurrentValue() == 0)
  121     const bool count_enabled = m_count.GetDefaultValue() < UINT64_MAX;
  157       m_count.SetCurrentValue(count);
  158       m_count.SetOptionWasSet();
  265   m_count.Clear();