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

References

tools/lldb/include/lldb/Interpreter/OptionGroupFormat.h
   51   OptionValueUInt64 &GetByteSizeValue() { return m_byte_size; }
   53   const OptionValueUInt64 &GetByteSizeValue() const { return m_byte_size; }
   62     return m_format.OptionWasSet() || m_byte_size.OptionWasSet() ||
tools/lldb/source/Interpreter/OptionGroupFormat.cpp
   46   if (m_byte_size.GetDefaultValue() < UINT64_MAX) {
   78     if (m_byte_size.GetDefaultValue() == 0) {
   81       error = m_byte_size.SetValueFromString(option_arg);
   82       if (m_byte_size.GetCurrentValue() == 0)
  120     const bool byte_size_enabled = m_byte_size.GetDefaultValue() < UINT64_MAX;
  153       m_byte_size.SetCurrentValue(byte_size);
  154       m_byte_size.SetOptionWasSet();
  264   m_byte_size.Clear();