Lines Matching refs:m_value_sp
25 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()
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()
184 m_value_sp = std::make_shared<OptionValueSInt64>( in Property()
195 m_value_sp = std::make_shared<OptionValueUInt64>( in Property()
208 m_value_sp = std::make_shared<OptionValueUUID>(uuid); in Property()
221 m_value_sp.reset(string_value); in Property()
229 : m_name(name), m_description(desc), m_value_sp(value_sp), in Property()
234 if (m_value_sp->DumpQualifiedName(strm)) in DumpQualifiedName()
244 if (m_value_sp) { in Dump()
247 const bool transparent = m_value_sp->ValueIsTransparent(); in Dump()
266 m_value_sp->DumpValue(exe_ctx, strm, dump_mask); in Dump()
273 if (!m_value_sp) in DumpDescription()
281 const OptionValueProperties *sub_properties = m_value_sp->GetAsProperties(); in DumpDescription()
285 if (m_value_sp->DumpQualifiedName(qualified_name)) in DumpDescription()
302 if (m_value_sp) in SetValueChangedCallback()
303 m_value_sp->SetValueChangedCallback(std::move(callback)); in SetValueChangedCallback()