Lines Matching refs:m_valobj
48 m_valobj = nullptr; in Init()
74 if (!GetMostSpecializedValue() || m_valobj == nullptr) in PrintValueObject()
99 if (m_valobj) in GetMostSpecializedValue()
103 m_valobj = m_orig_valobj; in GetMostSpecializedValue()
109 m_valobj = static_value; in GetMostSpecializedValue()
111 m_valobj = m_orig_valobj; in GetMostSpecializedValue()
113 m_valobj = m_orig_valobj; in GetMostSpecializedValue()
119 m_valobj = dynamic_value; in GetMostSpecializedValue()
121 m_valobj = m_orig_valobj; in GetMostSpecializedValue()
123 m_valobj = m_orig_valobj; in GetMostSpecializedValue()
126 if (m_valobj->IsSynthetic()) { in GetMostSpecializedValue()
128 ValueObject *non_synthetic = m_valobj->GetNonSyntheticValue().get(); in GetMostSpecializedValue()
130 m_valobj = non_synthetic; in GetMostSpecializedValue()
134 ValueObject *synthetic = m_valobj->GetSyntheticValue().get(); in GetMostSpecializedValue()
136 m_valobj = synthetic; in GetMostSpecializedValue()
140 m_compiler_type = m_valobj->GetCompilerType(); in GetMostSpecializedValue()
146 const char *str = m_valobj->GetObjectDescription(); in GetDescriptionForDisplay()
148 str = m_valobj->GetSummaryAsCString(); in GetDescriptionForDisplay()
150 str = m_valobj->GetValueAsCString(); in GetDescriptionForDisplay()
156 ? m_valobj->GetName().AsCString() in GetRootNameForDisplay()
172 m_is_nil = m_valobj->IsNilReference() ? eLazyBoolYes : eLazyBoolNo; in IsNil()
179 m_valobj->IsUninitializedReference() ? eLazyBoolYes : eLazyBoolNo; in IsUninitialized()
205 m_is_instance_ptr = (m_valobj->GetValue().GetCompilerType().GetTypeInfo() & in IsInstancePointer()
209 if ((eLazyBoolYes == m_is_instance_ptr) && m_valobj->IsBaseClass()) in IsInstancePointer()
216 m_stream->Printf("%s: ", m_valobj->GetLocationAsCString()); in PrintLocationIfNeeded()
243 ? m_valobj->GetDisplayTypeName() in PrintDecl()
244 : m_valobj->GetQualifiedTypeName(); in PrintDecl()
268 m_valobj->GetExpressionPath(varName); in PrintDecl()
280 ? m_valobj->GetPreferredDisplayLanguage() in PrintDecl()
313 return m_valobj->IsInScope(); in CheckScopeIfNeeded()
320 : m_valobj->GetSummaryFormat().get(); in GetSummaryFormatter()
346 m_valobj->GetValueAsCString(lldb::eFormatDefault, value); in GetValueSummaryError()
347 else if (format != eFormatDefault && format != m_valobj->GetFormat()) in GetValueSummaryError()
348 m_valobj->GetValueAsCString(format, value); in GetValueSummaryError()
350 const char *val_cstr = m_valobj->GetValueAsCString(); in GetValueSummaryError()
354 const char *err_cstr = m_valobj->GetError().AsCString(); in GetValueSummaryError()
364 ? m_valobj->GetPreferredDisplayLanguage() in GetValueSummaryError()
378 m_valobj->GetSummaryAsCString(entry, summary, in GetValueSummaryError()
382 m_valobj->GetSummaryAsCString(m_options.m_varformat_language); in GetValueSummaryError()
421 (entry->DoesPrintValue(m_valobj) || in PrintValueAndSummaryIfNeeded()
426 IsPointerValue(m_valobj->GetCompilerType())) { in PrintValueAndSummaryIfNeeded()
452 object_desc = m_valobj->GetObjectDescription(); in PrintObjectDescriptionIfNeeded()
515 if (m_valobj->GetPointerValue(&ptr_address_type) == 0) in ShouldPrintChildren()
531 return (!entry || entry->DoesPrintChildren(m_valobj) || m_summary.empty()); in ShouldPrintChildren()
546 return m_valobj; in GetValueObjectForChildrenGeneration()
599 m_valobj->GetTargetSP()->GetMaximumNumberOfChildrenToDisplay(); in GetMaxNumChildrenToPrint()
612 m_valobj->GetTargetSP() in PrintChildrenPostamble()
700 if (m_valobj->DoesProvideSyntheticValue() || in PrintChildren()
713 if (!GetMostSpecializedValue() || m_valobj == nullptr) in PrintChildrenOneLiner()
769 : DataVisualization::ShouldPrintAsOneLiner(*m_valobj); in PrintChildrenIfNeeded()
771 uint64_t instance_ptr_value = m_valobj->GetValueAsUnsigned(0); in PrintChildrenIfNeeded()