Lines Matching refs:value_sp

50                                            const OptionValueSP &value_sp) {  in AppendProperty()  argument
52 value_sp); in AppendProperty()
55 value_sp->SetParent(shared_from_this()); in AppendProperty()
82 lldb::OptionValueSP value_sp; in GetValueForKey() local
85 value_sp = GetPropertyAtIndex(exe_ctx, will_modify, idx)->GetValue(); in GetValueForKey()
86 return value_sp; in GetValueForKey()
93 lldb::OptionValueSP value_sp; in GetSubValue() local
106 value_sp = GetValueForKey(exe_ctx, key, will_modify); in GetSubValue()
107 if (sub_name.empty() || !value_sp) in GetSubValue()
108 return value_sp; in GetSubValue()
114 value_sp->GetSubValue(exe_ctx, sub_name.drop_front(), will_modify, error); in GetSubValue()
120 return_val_sp = value_sp->GetSubValue( in GetSubValue()
132 return value_sp->GetSubValue(exe_ctx, sub_name, will_modify, error); in GetSubValue()
135 value_sp.reset(); in GetSubValue()
138 return value_sp; in GetSubValue()
154 lldb::OptionValueSP value_sp(GetSubValue(exe_ctx, name, will_modify, error)); in SetSubValue() local
155 if (value_sp) in SetSubValue()
156 error = value_sp->SetValueFromString(value, op); in SetSubValue()
197 OptionValueSP value_sp(GetPropertyValueAtIndex(exe_ctx, will_modify, idx)); in GetPropertyAtIndexAsOptionValuePathMappings() local
198 if (value_sp) in GetPropertyAtIndexAsOptionValuePathMappings()
199 return value_sp->GetAsPathMappings(); in GetPropertyAtIndexAsOptionValuePathMappings()
206 OptionValueSP value_sp(GetPropertyValueAtIndex(exe_ctx, will_modify, idx)); in GetPropertyAtIndexAsOptionValueFileSpecList() local
207 if (value_sp) in GetPropertyAtIndexAsOptionValueFileSpecList()
208 return value_sp->GetAsFileSpecList(); in GetPropertyAtIndexAsOptionValueFileSpecList()
473 OptionValueSP value_sp(GetPropertyValueAtIndex(exe_ctx, will_modify, idx)); in GetPropertyAtIndexAsOptionValueString() local
474 if (value_sp) in GetPropertyAtIndexAsOptionValueString()
475 return value_sp->GetAsString(); in GetPropertyAtIndexAsOptionValueString()
554 lldb::OptionValueSP value_sp( in DumpPropertyValue() local
556 if (value_sp) { in DumpPropertyValue()
557 if (!value_sp->ValueIsTransparent()) { in DumpPropertyValue()
563 value_sp->DumpValue(exe_ctx, strm, dump_mask); in DumpPropertyValue()
589 auto value_sp = property.GetValue()->DeepCopy(copy_sp); in DeepCopy() local
590 property.SetOptionValue(value_sp); in DeepCopy()