Home
last modified time | relevance | path

Searched refs:m_value_sp (Results 1 – 2 of 2) sorted by relevance

/external/llvm-project/lldb/source/Interpreter/
DProperty.cpp25 m_value_sp(), m_is_global(definition.global) { in Property()
34 m_value_sp = in Property()
40 m_value_sp = std::make_shared<OptionValueArgs>(); in Property()
45 m_value_sp = in Property()
56 m_value_sp = in Property()
60 m_value_sp = std::make_shared<OptionValueBoolean>( in Property()
66 m_value_sp = std::make_shared<OptionValueChar>( in Property()
72 m_value_sp = in Property()
85 m_value_sp.reset(enum_value); in Property()
105 m_value_sp = std::make_shared<OptionValueFileColonLine>(); in Property()
[all …]
/external/llvm-project/lldb/include/lldb/Interpreter/
DProperty.h48 const lldb::OptionValueSP &GetValue() const { return m_value_sp; } in GetValue()
51 m_value_sp = value_sp; in SetOptionValue()
54 bool IsValid() const { return (bool)m_value_sp; } in IsValid()
72 lldb::OptionValueSP m_value_sp; variable