Searched refs:m_current_value (Results 1 - 22 of 22) sorted by last modified time

/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueLanguage.cpp27 if (m_current_value != eLanguageTypeUnknown)
28 strm.PutCString(Language::GetNameForLanguageType(m_current_value));
48 m_current_value = new_type;
H A DOptionValueFileSpecList.cpp25 const uint32_t size = m_current_value.GetSize();
28 (m_current_value.GetSize() > 0 && !one_line) ? "\n" : "");
36 m_current_value.GetFileSpecAtIndex(i).Dump(strm.AsRawOstream());
62 const uint32_t count = m_current_value.GetSize();
71 m_current_value.Replace(idx, file);
73 m_current_value.Append(file);
84 m_current_value.Clear();
92 m_current_value.Append(file);
106 const uint32_t count = m_current_value.GetSize();
116 m_current_value
[all...]
H A DOptionValueFileSpec.cpp22 : OptionValue(), m_current_value(), m_default_value(), m_data_sp(),
28 : OptionValue(), m_current_value(value), m_default_value(value),
36 : OptionValue(), m_current_value(current_value),
49 if (m_current_value) {
50 strm << '"' << m_current_value.GetPath().c_str() << '"';
76 m_current_value.SetFile(value.str(), FileSpec::Style::native);
78 FileSystem::Instance().Resolve(m_current_value);
109 if (m_current_value) {
110 const auto file_mod_time = FileSystem::Instance().GetModificationTime(m_current_value);
114 FileSystem::Instance().CreateDataBuffer(m_current_value
[all...]
H A DOptionValueEnumeration.cpp18 : OptionValue(), m_current_value(value), m_default_value(value),
34 if (m_enumerations.GetValueAtIndexUnchecked(i).value == m_current_value) {
39 strm.Printf("%" PRIu64, (uint64_t)m_current_value);
58 m_current_value = enumerator_entry->value.value;
H A DOptionValueBoolean.cpp29 strm.PutCString(m_current_value ? "true" : "false");
48 m_current_value = value;
H A DOptionValueArch.cpp28 if (m_current_value.IsValid()) {
29 const char *arch_name = m_current_value.GetArchitectureName();
48 if (m_current_value.SetTriple(value_str.c_str())) {
H A DOptionValueUInt64.cpp34 strm.Printf("%" PRIu64, m_current_value);
54 m_current_value = value;
H A DOptionValueString.cpp26 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
[all...]
H A DOptionValueSInt64.cpp19 // printf ("%p: DumpValue (exe_ctx=%p, strm, mask) m_current_value = %"
21 // "\n", this, exe_ctx, m_current_value);
29 strm.Printf("%" PRIi64, m_current_value);
50 m_current_value = value;
H A DOptionValueFormat.cpp25 strm.PutCString(FormatManager::GetFormatAsCString(m_current_value));
44 m_current_value = new_format;
H A DOptionValueChar.cpp27 if (m_current_value != '\0')
28 strm.PutChar(m_current_value);
47 m_current_value = char_value;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueFileSpec.h45 m_current_value = m_default_value;
59 FileSpec &GetCurrentValue() { return m_current_value; }
61 const FileSpec &GetCurrentValue() const { return m_current_value; }
66 m_current_value = value;
79 FileSpec m_current_value; member in class:lldb_private::OptionValueFileSpec
H A DOptionValueEnumeration.h51 m_current_value = m_default_value;
64 m_current_value = value;
65 return m_current_value;
68 enum_type GetCurrentValue() const { return m_current_value; }
72 void SetCurrentValue(enum_type value) { m_current_value = value; }
79 enum_type m_current_value; member in class:lldb_private::OptionValueEnumeration
H A DOptionValueBoolean.h19 : OptionValue(), m_current_value(value), m_default_value(value) {}
21 : OptionValue(), m_current_value(current_value),
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; }
82 bool m_current_value; member in class:lldb_private::OptionValueBoolean
H A DOptionValueArch.h20 OptionValueArch() : OptionValue(), m_current_value(), m_default_value() {}
23 : OptionValue(), m_current_value(triple), m_default_value() {
24 m_default_value = m_current_value;
28 : OptionValue(), m_current_value(value), m_default_value(value) {}
31 : OptionValue(), m_current_value(current_value),
51 m_current_value = m_default_value;
63 ArchSpec &GetCurrentValue() { return m_current_value; }
65 const ArchSpec &GetCurrentValue() const { return m_current_value; }
70 m_current_value = value;
78 ArchSpec m_current_value; member in class:lldb_private::OptionValueArch
[all...]
H A DOptionValueUInt64.h19 OptionValueUInt64() : OptionValue(), m_current_value(0), m_default_value(0) {}
22 : OptionValue(), m_current_value(value), m_default_value(value) {}
25 : OptionValue(), m_current_value(current_value),
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; }
76 uint64_t m_current_value; member in class:lldb_private::OptionValueUInt64
[all...]
H A DOptionValueString.h27 : OptionValue(), m_current_value(), m_default_value(), m_options(),
31 : OptionValue(), m_current_value(), m_default_value(), m_options(),
35 : OptionValue(), m_current_value(), m_default_value(), m_options(),
38 m_current_value.assign(value);
44 : OptionValue(), m_current_value(), m_default_value(), m_options(),
47 m_current_value.assign(current_value);
54 : OptionValue(), m_current_value(), m_default_value(), m_options(),
57 m_current_value.assign(value);
64 : OptionValue(), m_current_value(), m_default_value(), m_options(),
67 m_current_value
130 std::string m_current_value; member in class:lldb_private::OptionValueString
[all...]
H A DOptionValueSInt64.h20 : OptionValue(), m_current_value(0), m_default_value(0),
24 : OptionValue(), m_current_value(value), m_default_value(value),
28 : OptionValue(), m_current_value(current_value),
33 : OptionValue(rhs), m_current_value(rhs.m_current_value),
54 m_current_value = m_default_value;
64 m_current_value = value;
65 return m_current_value;
68 int64_t GetCurrentValue() const { return m_current_value; }
74 m_current_value
97 int64_t m_current_value; member in class:lldb_private::OptionValueSInt64
[all...]
H A DOptionValueLanguage.h21 : OptionValue(), m_current_value(value), m_default_value(value) {}
25 : OptionValue(), m_current_value(current_value),
45 m_current_value = m_default_value;
54 lldb::LanguageType GetCurrentValue() const { return m_current_value; }
58 void SetCurrentValue(lldb::LanguageType value) { m_current_value = value; }
63 lldb::LanguageType m_current_value; member in class:lldb_private::OptionValueLanguage
H A DOptionValueFormat.h19 : OptionValue(), m_current_value(value), m_default_value(value) {}
22 : OptionValue(), m_current_value(current_value),
42 m_current_value = m_default_value;
51 lldb::Format GetCurrentValue() const { return m_current_value; }
55 void SetCurrentValue(lldb::Format value) { m_current_value = value; }
60 lldb::Format m_current_value; member in class:lldb_private::OptionValueFormat
H A DOptionValueFileSpecList.h21 OptionValueFileSpecList() : OptionValue(), m_current_value() {}
24 : OptionValue(), m_current_value(current_value) {}
44 m_current_value.Clear();
57 return m_current_value;
62 m_current_value = value;
67 m_current_value.Append(value);
72 FileSpecList m_current_value; member in class:lldb_private::OptionValueFileSpecList
H A DOptionValueChar.h19 : OptionValue(), m_current_value(value), m_default_value(value) {}
22 : OptionValue(), m_current_value(current_value),
42 m_current_value = m_default_value;
50 m_current_value = c;
51 return m_current_value;
54 char GetCurrentValue() const { return m_current_value; }
58 void SetCurrentValue(char value) { m_current_value = value; }
65 char m_current_value; member in class:lldb_private::OptionValueChar

Completed in 219 milliseconds