Lines Matching defs:options

26                                         const DumpValueObjectOptions& options)
28 Init(valobj,s,options,options.m_max_ptr_depth,0);
33 const DumpValueObjectOptions& options,
37 Init(valobj,s,options,ptr_depth,curr_depth);
43 const DumpValueObjectOptions& options,
50 this->options = options;
109 if (options.m_use_dynamic == eNoDynamicValues)
122 if (options.m_use_dynamic != eNoDynamicValues)
124 ValueObject *dynamic_value = m_orig_valobj->GetDynamicValue(options.m_use_dynamic).get();
153 const char *root_valobj_name = options.m_root_valobj_name.empty() ?
155 options.m_root_valobj_name.c_str();
163 m_should_print = (options.m_flat_output == false || m_type_flags.Test (ClangASTType::eTypeHasValue)) ? eLazyBoolYes : eLazyBoolNo;
202 if (options.m_show_location)
215 if (m_curr_depth == 0 && options.m_hide_root_type)
219 show_type = options.m_show_types || (m_curr_depth == 0 && !options.m_flat_output);
237 if (options.m_flat_output)
241 if (!options.m_hide_name)
248 else if (!options.m_hide_name)
260 if (options.m_scope_already_checked)
270 TypeSummaryImpl* entry = options.m_summary_sp ? options.m_summary_sp.get() : m_valobj->GetSummaryFormat().get();
272 if (options.m_omit_summary_depth > 0)
285 if (options.m_format != eFormatDefault && options.m_format != m_valobj->GetFormat())
287 m_valobj->GetValueAsCString(options.m_format,
304 else if (options.m_omit_summary_depth == 0)
344 if (!IsNil() && !m_value.empty() && (entry == NULL || (entry->DoesPrintValue() || options.m_format != eFormatDefault) || m_summary.empty()) && !options.m_hide_value)
367 if (options.m_use_objc && !IsNil())
369 if (!options.m_hide_value || !options.m_hide_name)
397 if (is_failed_description || m_curr_depth < options.m_max_depth)
437 ValueObjectSP synth_valobj_sp = m_valobj->GetSyntheticValue (options.m_use_synthetic);
444 if (options.m_flat_output)
461 DumpValueObjectOptions child_options(options);
462 child_options.SetFormat(options.m_format).SetSummary().SetRootValueObjectName();
463 child_options.SetScopeChecked(true).SetHideName(options.m_hide_name).SetHideValue(options.m_hide_value)
488 if (num_children > max_num_children && !options.m_ignore_cap)
500 if (!options.m_flat_output)
562 lldb::ValueObjectSP child_dyn_sp = child_sp.get() ? child_sp->GetDynamicValue(options.m_use_dynamic) : child_sp;
603 bool print_oneline = (curr_ptr_depth > 0 || options.m_show_types || options.m_be_raw) ? false : DataVisualization::ShouldPrintAsOneLiner(*m_valobj);
616 else if (m_curr_depth >= options.m_max_depth && IsAggregate() && ShouldPrintValueObject())