Lines Matching refs:valobj
23 ValueObjectPrinter::ValueObjectPrinter(ValueObject &valobj, Stream *s) in ValueObjectPrinter() argument
24 : m_orig_valobj(valobj) { in ValueObjectPrinter()
25 DumpValueObjectOptions options(valobj); in ValueObjectPrinter()
26 Init(valobj, s, options, m_options.m_max_ptr_depth, 0, nullptr); in ValueObjectPrinter()
29 ValueObjectPrinter::ValueObjectPrinter(ValueObject &valobj, Stream *s, in ValueObjectPrinter() argument
31 : m_orig_valobj(valobj) { in ValueObjectPrinter()
32 Init(valobj, s, options, m_options.m_max_ptr_depth, 0, nullptr); in ValueObjectPrinter()
36 ValueObject &valobj, Stream *s, const DumpValueObjectOptions &options, in ValueObjectPrinter() argument
39 : m_orig_valobj(valobj) { in ValueObjectPrinter()
40 Init(valobj, s, options, ptr_depth, curr_depth, printed_instance_pointers); in ValueObjectPrinter()
44 ValueObject &valobj, Stream *s, const DumpValueObjectOptions &options, in Init() argument
148 ValueObject &valobj = GetMostSpecializedValue(); in GetDescriptionForDisplay() local
149 llvm::Expected<std::string> maybe_str = valobj.GetObjectDescription(); in GetDescriptionForDisplay()
155 str = valobj.GetSummaryAsCString(); in GetDescriptionForDisplay()
157 str = valobj.GetValueAsCString(); in GetDescriptionForDisplay()
218 ValueObject &valobj = GetMostSpecializedValue(); in IsInstancePointer() local
220 m_is_instance_ptr = (valobj.GetValue().GetCompilerType().GetTypeInfo() & in IsInstancePointer()
224 if ((eLazyBoolYes == m_is_instance_ptr) && valobj.IsBaseClass()) in IsInstancePointer()
251 ValueObject &valobj = GetMostSpecializedValue(); in PrintDecl() local
260 ? valobj.GetDisplayTypeName() in PrintDecl()
261 : valobj.GetQualifiedTypeName(); in PrintDecl()
285 valobj.GetExpressionPath(varName); in PrintDecl()
297 ? valobj.GetPreferredDisplayLanguage() in PrintDecl()
366 ValueObject &valobj = GetMostSpecializedValue(); in GetValueSummaryError() local
370 valobj.GetValueAsCString(lldb::eFormatDefault, value); in GetValueSummaryError()
371 else if (format != eFormatDefault && format != valobj.GetFormat()) in GetValueSummaryError()
372 valobj.GetValueAsCString(format, value); in GetValueSummaryError()
374 const char *val_cstr = valobj.GetValueAsCString(); in GetValueSummaryError()
378 const char *err_cstr = valobj.GetError().AsCString(); in GetValueSummaryError()
388 ? valobj.GetPreferredDisplayLanguage() in GetValueSummaryError()
402 valobj.GetSummaryAsCString(entry, summary, in GetValueSummaryError()
406 valobj.GetSummaryAsCString(m_options.m_varformat_language); in GetValueSummaryError()
441 ValueObject &valobj = GetMostSpecializedValue(); in PrintValueAndSummaryIfNeeded() local
446 (entry->DoesPrintValue(&valobj) || in PrintValueAndSummaryIfNeeded()
451 IsPointerValue(valobj.GetCompilerType())) { in PrintValueAndSummaryIfNeeded()
538 ValueObject &valobj = GetMostSpecializedValue(); in ShouldPrintChildren() local
540 print_children = type_summary->DoesPrintChildren(&valobj); in ShouldPrintChildren()
553 if (valobj.GetPointerValue(&ptr_address_type) == 0) in ShouldPrintChildren()
832 ValueObject &valobj = GetMostSpecializedValue(); in PrintChildrenIfNeeded() local
841 : DataVisualization::ShouldPrintAsOneLiner(valobj); in PrintChildrenIfNeeded()
843 uint64_t instance_ptr_value = valobj.GetValueAsUnsigned(0); in PrintChildrenIfNeeded()
869 valobj.GetTargetSP() in PrintChildrenIfNeeded()