Lines Matching refs:m_value_sp
33 m_value_sp = in Property()
39 m_value_sp = std::make_shared<OptionValueArgs>(); in Property()
44 m_value_sp = in Property()
55 m_value_sp = in Property()
59 m_value_sp = std::make_shared<OptionValueBoolean>( in Property()
65 m_value_sp = std::make_shared<OptionValueChar>( in Property()
71 m_value_sp = std::make_shared<OptionValueDictionary>( in Property()
85 m_value_sp.reset(enum_value); in Property()
105 m_value_sp = std::make_shared<OptionValueFileColonLine>(); in Property()
115 m_value_sp = std::make_shared<OptionValueFileSpec>(file_spec, resolve); in Property()
122 m_value_sp = std::make_shared<OptionValueFileSpecList>(); in Property()
137 m_value_sp = std::make_shared<OptionValueFormat>(new_format); in Property()
153 m_value_sp = std::make_shared<OptionValueLanguage>(new_lang); in Property()
160 m_value_sp = std::make_shared<OptionValueFormatEntity>( in Property()
167 m_value_sp = std::make_shared<OptionValuePathMappings>( in Property()
175 m_value_sp = in Property()
188 m_value_sp = std::make_shared<OptionValueSInt64>( in Property()
201 m_value_sp = std::make_shared<OptionValueUInt64>( in Property()
212 m_value_sp = std::make_shared<OptionValueUUID>(uuid); in Property()
225 m_value_sp.reset(string_value); in Property()
233 : m_name(name), m_description(desc), m_value_sp(value_sp), in Property()
238 if (m_value_sp->DumpQualifiedName(strm)) in DumpQualifiedName()
248 if (m_value_sp) { in Dump()
251 const bool transparent = m_value_sp->ValueIsTransparent(); in Dump()
270 m_value_sp->DumpValue(exe_ctx, strm, dump_mask); in Dump()
277 if (!m_value_sp) in DumpDescription()
285 const OptionValueProperties *sub_properties = m_value_sp->GetAsProperties(); in DumpDescription()
289 if (m_value_sp->DumpQualifiedName(qualified_name)) in DumpDescription()
306 if (m_value_sp) in SetValueChangedCallback()
307 m_value_sp->SetValueChangedCallback(std::move(callback)); in SetValueChangedCallback()