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

References

tools/lldb/include/lldb/Interpreter/OptionValueString.h
   38       m_current_value.assign(value);
   47       m_current_value.assign(current_value);
   57       m_current_value.assign(value);
   67       m_current_value.assign(current_value);
   89     m_current_value = m_default_value;
  104     return m_current_value.c_str();
  107   const char *GetCurrentValue() const { return m_current_value.c_str(); }
  108   llvm::StringRef GetCurrentValueAsRef() const { return m_current_value; }
  125   bool IsCurrentValueEmpty() const { return m_current_value.empty(); }
tools/lldb/source/Interpreter/OptionValueString.cpp
   26     if (!m_current_value.empty() || m_value_was_set) {
   29         Args::ExpandEscapedCharacters(m_current_value.c_str(),
   37           strm.Printf("%s", m_current_value.c_str());
   39           strm.Printf("\"%s\"", m_current_value.c_str());
   79     std::string new_value(m_current_value);
   93     m_current_value.assign(new_value);
  111       Args::EncodeEscapeSequences(value_str.c_str(), m_current_value);
  131   m_current_value.assign(value);
  138       std::string new_value(m_current_value);
  143       m_current_value.assign(new_value);
  145       m_current_value.append(value);