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

References

tools/lldb/include/lldb/Interpreter/OptionValueUInt64.h
   51     m_current_value = m_default_value;
   61     m_current_value = value;
   62     return m_current_value;
   65   operator uint64_t() const { return m_current_value; }
   67   uint64_t GetCurrentValue() const { return m_current_value; }
   71   void SetCurrentValue(uint64_t value) { m_current_value = value; }
tools/lldb/source/Interpreter/OptionValueUInt64.cpp
   34     strm.Printf("%" PRIu64, m_current_value);
   54       m_current_value = value;