Lines Matching refs:value_sp
50 const OptionValueSP &value_sp) { in AppendProperty() argument
51 Property property(name, desc, is_global, value_sp); in AppendProperty()
54 value_sp->SetParent(shared_from_this()); in AppendProperty()
81 lldb::OptionValueSP value_sp; in GetValueForKey() local
84 value_sp = GetPropertyAtIndex(exe_ctx, will_modify, idx)->GetValue(); in GetValueForKey()
85 return value_sp; in GetValueForKey()
92 lldb::OptionValueSP value_sp; in GetSubValue() local
105 value_sp = GetValueForKey(exe_ctx, key, will_modify); in GetSubValue()
106 if (sub_name.empty() || !value_sp) in GetSubValue()
107 return value_sp; in GetSubValue()
113 value_sp->GetSubValue(exe_ctx, sub_name.drop_front(), will_modify, error); in GetSubValue()
119 return_val_sp = value_sp->GetSubValue( in GetSubValue()
131 return value_sp->GetSubValue(exe_ctx, sub_name, will_modify, error); in GetSubValue()
134 value_sp.reset(); in GetSubValue()
137 return value_sp; in GetSubValue()
153 lldb::OptionValueSP value_sp(GetSubValue(exe_ctx, name, will_modify, error)); in SetSubValue() local
154 if (value_sp) in SetSubValue()
155 error = value_sp->SetValueFromString(value, op); in SetSubValue()
196 OptionValueSP value_sp(GetPropertyValueAtIndex(exe_ctx, will_modify, idx)); in GetPropertyAtIndexAsOptionValuePathMappings() local
197 if (value_sp) in GetPropertyAtIndexAsOptionValuePathMappings()
198 return value_sp->GetAsPathMappings(); in GetPropertyAtIndexAsOptionValuePathMappings()
205 OptionValueSP value_sp(GetPropertyValueAtIndex(exe_ctx, will_modify, idx)); in GetPropertyAtIndexAsOptionValueFileSpecList() local
206 if (value_sp) in GetPropertyAtIndexAsOptionValueFileSpecList()
207 return value_sp->GetAsFileSpecList(); in GetPropertyAtIndexAsOptionValueFileSpecList()
450 OptionValueSP value_sp(GetPropertyValueAtIndex(exe_ctx, will_modify, idx)); in GetPropertyAtIndexAsOptionValueString() local
451 if (value_sp) in GetPropertyAtIndexAsOptionValueString()
452 return value_sp->GetAsString(); in GetPropertyAtIndexAsOptionValueString()
531 lldb::OptionValueSP value_sp( in DumpPropertyValue() local
533 if (value_sp) { in DumpPropertyValue()
534 if (!value_sp->ValueIsTransparent()) { in DumpPropertyValue()
540 value_sp->DumpValue(exe_ctx, strm, dump_mask); in DumpPropertyValue()
566 auto value_sp = property.GetValue()->DeepCopy(copy_sp); in DeepCopy() local
567 property.SetOptionValue(value_sp); in DeepCopy()