Lines Matching refs:value_sp

86                                       const OptionValueSP &value_sp)  in AppendProperty()  argument
88 Property property(name, desc, is_global, value_sp); in AppendProperty()
91 value_sp->SetParent (shared_from_this()); in AppendProperty()
121 lldb::OptionValueSP value_sp; in GetValueForKey() local
124 value_sp = GetPropertyAtIndex(exe_ctx, will_modify, idx)->GetValue(); in GetValueForKey()
125 return value_sp; in GetValueForKey()
134 lldb::OptionValueSP value_sp; in GetSubValue() local
150 value_sp = GetValueForKey (exe_ctx, key, will_modify); in GetSubValue()
151 if (sub_name && value_sp) in GetSubValue()
156 return value_sp->GetSubValue (exe_ctx, sub_name + 1, will_modify, error); in GetSubValue()
179 … return value_sp->GetSubValue (exe_ctx, predicate_end + 1, will_modify, error); in GetSubValue()
190 value_sp.reset(); in GetSubValue()
197 return value_sp->GetSubValue (exe_ctx, sub_name, will_modify, error); in GetSubValue()
200 value_sp.reset(); in GetSubValue()
205 return value_sp; in GetSubValue()
216 lldb::OptionValueSP value_sp (GetSubValue (exe_ctx, name, will_modify, error)); in SetSubValue() local
217 if (value_sp) in SetSubValue()
218 error = value_sp->SetValueFromCString(value, op); in SetSubValue()
279 OptionValueSP value_sp(GetPropertyValueAtIndex (exe_ctx, will_modify, idx)); in GetPropertyAtIndexAsOptionValuePathMappings() local
280 if (value_sp) in GetPropertyAtIndexAsOptionValuePathMappings()
281 return value_sp->GetAsPathMappings(); in GetPropertyAtIndexAsOptionValuePathMappings()
288 OptionValueSP value_sp(GetPropertyValueAtIndex (exe_ctx, will_modify, idx)); in GetPropertyAtIndexAsOptionValueFileSpecList() local
289 if (value_sp) in GetPropertyAtIndexAsOptionValueFileSpecList()
290 return value_sp->GetAsFileSpecList(); in GetPropertyAtIndexAsOptionValueFileSpecList()
536 OptionValueSP value_sp(GetPropertyValueAtIndex (exe_ctx, will_modify, idx)); in GetPropertyAtIndexAsOptionValueString() local
537 if (value_sp) in GetPropertyAtIndexAsOptionValueString()
538 return value_sp->GetAsString(); in GetPropertyAtIndexAsOptionValueString()
635 lldb::OptionValueSP value_sp (GetSubValue (exe_ctx, property_path, will_modify, error)); in DumpPropertyValue() local
636 if (value_sp) in DumpPropertyValue()
638 if (!value_sp->ValueIsTransparent ()) in DumpPropertyValue()
645 value_sp->DumpValue (exe_ctx, strm, dump_mask); in DumpPropertyValue()