Home | History | Annotate | Download | only in Interpreter

Lines Matching defs:will_modify

119                                         bool will_modify) const
124 value_sp = GetPropertyAtIndex(exe_ctx, will_modify, idx)->GetValue();
131 bool will_modify,
150 value_sp = GetValueForKey (exe_ctx, key, will_modify);
156 return value_sp->GetSubValue (exe_ctx, sub_name + 1, will_modify, error);
179 return value_sp->GetSubValue (exe_ctx, predicate_end + 1, will_modify, error);
197 return value_sp->GetSubValue (exe_ctx, sub_name, will_modify, error);
215 const bool will_modify = true;
216 lldb::OptionValueSP value_sp (GetSubValue (exe_ctx, name, will_modify, error));
254 OptionValueProperties::GetProperty (const ExecutionContext *exe_ctx, bool will_modify, const ConstString &name) const
256 return GetPropertyAtIndex (exe_ctx, will_modify, m_name_to_index.Find (name.GetCString(), SIZE_MAX));
260 OptionValueProperties::GetPropertyAtIndex (const ExecutionContext *exe_ctx, bool will_modify, uint32_t idx) const
267 bool will_modify,
270 const Property *setting = GetPropertyAtIndex (exe_ctx, will_modify, idx);
277 OptionValueProperties::GetPropertyAtIndexAsOptionValuePathMappings (const ExecutionContext *exe_ctx, bool will_modify, uint32_t idx) const
279 OptionValueSP value_sp(GetPropertyValueAtIndex (exe_ctx, will_modify, idx));
286 OptionValueProperties::GetPropertyAtIndexAsOptionValueFileSpecList (const ExecutionContext *exe_ctx, bool will_modify, uint32_t idx) const
288 OptionValueSP value_sp(GetPropertyValueAtIndex (exe_ctx, will_modify, idx));
415 OptionValueProperties::GetPropertyAtIndexAsOptionValueFileSpec (const ExecutionContext *exe_ctx, bool will_modify, uint32_t idx) const
534 OptionValueProperties::GetPropertyAtIndexAsOptionValueString (const ExecutionContext *exe_ctx, bool will_modify, uint32_t idx) const
536 OptionValueSP value_sp(GetPropertyValueAtIndex (exe_ctx, will_modify, idx));
634 const bool will_modify = false;
635 lldb::OptionValueSP value_sp (GetSubValue (exe_ctx, property_path, will_modify, error));
658 bool will_modify,
676 property = GetProperty (exe_ctx, will_modify, key);
683 return sub_properties->GetPropertyAtPath(exe_ctx, will_modify, sub_name + 1);