Lines Matching refs:m_valobj

49   m_valobj = nullptr;  in Init()
75 if (!GetMostSpecializedValue() || m_valobj == nullptr) in PrintValueObject()
104 if (m_valobj) in GetMostSpecializedValue()
108 m_valobj = m_orig_valobj; in GetMostSpecializedValue()
114 m_valobj = static_value; in GetMostSpecializedValue()
116 m_valobj = m_orig_valobj; in GetMostSpecializedValue()
118 m_valobj = m_orig_valobj; in GetMostSpecializedValue()
124 m_valobj = dynamic_value; in GetMostSpecializedValue()
126 m_valobj = m_orig_valobj; in GetMostSpecializedValue()
128 m_valobj = m_orig_valobj; in GetMostSpecializedValue()
131 if (m_valobj->IsSynthetic()) { in GetMostSpecializedValue()
133 ValueObject *non_synthetic = m_valobj->GetNonSyntheticValue().get(); in GetMostSpecializedValue()
135 m_valobj = non_synthetic; in GetMostSpecializedValue()
139 ValueObject *synthetic = m_valobj->GetSyntheticValue().get(); in GetMostSpecializedValue()
141 m_valobj = synthetic; in GetMostSpecializedValue()
145 m_compiler_type = m_valobj->GetCompilerType(); in GetMostSpecializedValue()
151 const char *str = m_valobj->GetObjectDescription(); in GetDescriptionForDisplay()
153 str = m_valobj->GetSummaryAsCString(); in GetDescriptionForDisplay()
155 str = m_valobj->GetValueAsCString(); in GetDescriptionForDisplay()
161 ? m_valobj->GetName().AsCString() in GetRootNameForDisplay()
177 m_is_nil = m_valobj->IsNilReference() ? eLazyBoolYes : eLazyBoolNo; in IsNil()
184 m_valobj->IsUninitializedReference() ? eLazyBoolYes : eLazyBoolNo; in IsUninitialized()
210 m_is_instance_ptr = (m_valobj->GetValue().GetCompilerType().GetTypeInfo() & in IsInstancePointer()
214 if ((eLazyBoolYes == m_is_instance_ptr) && m_valobj->IsBaseClass()) in IsInstancePointer()
221 m_stream->Printf("%s: ", m_valobj->GetLocationAsCString()); in PrintLocationIfNeeded()
248 type_name = m_valobj->GetDisplayTypeName(); in PrintDecl()
250 type_name = m_valobj->GetQualifiedTypeName(); in PrintDecl()
278 m_valobj->GetExpressionPath(varName, qualify_cxx_base_classes); in PrintDecl()
292 ? m_valobj->GetPreferredDisplayLanguage() in PrintDecl()
325 return m_valobj->IsInScope(); in CheckScopeIfNeeded()
332 : m_valobj->GetSummaryFormat().get(); in GetSummaryFormatter()
358 m_valobj->GetValueAsCString(lldb::eFormatDefault, value); in GetValueSummaryError()
359 else if (format != eFormatDefault && format != m_valobj->GetFormat()) in GetValueSummaryError()
360 m_valobj->GetValueAsCString(format, value); in GetValueSummaryError()
362 const char *val_cstr = m_valobj->GetValueAsCString(); in GetValueSummaryError()
366 const char *err_cstr = m_valobj->GetError().AsCString(); in GetValueSummaryError()
378 m_valobj->GetSummaryAsCString(entry, summary, in GetValueSummaryError()
382 m_valobj->GetSummaryAsCString(m_options.m_varformat_language); in GetValueSummaryError()
419 (entry == NULL || (entry->DoesPrintValue(m_valobj) || in PrintValueAndSummaryIfNeeded()
424 IsPointerValue(m_valobj->GetCompilerType())) { in PrintValueAndSummaryIfNeeded()
450 object_desc = m_valobj->GetObjectDescription(); in PrintObjectDescriptionIfNeeded()
513 if (m_valobj->GetPointerValue(&ptr_address_type) == 0) in ShouldPrintChildren()
529 return (!entry || entry->DoesPrintChildren(m_valobj) || m_summary.empty()); in ShouldPrintChildren()
544 return m_valobj; in GetValueObjectForChildrenGeneration()
597 m_valobj->GetTargetSP()->GetMaximumNumberOfChildrenToDisplay(); in GetMaxNumChildrenToPrint()
610 m_valobj->GetTargetSP() in PrintChildrenPostamble()
698 if (m_valobj->DoesProvideSyntheticValue() || in PrintChildren()
711 if (!GetMostSpecializedValue() || m_valobj == nullptr) in PrintChildrenOneLiner()
767 : DataVisualization::ShouldPrintAsOneLiner(*m_valobj); in PrintChildrenIfNeeded()
772 instance_ptr_value = m_valobj->GetValueAsUnsigned(0); in PrintChildrenIfNeeded()
806 m_validation = m_valobj->GetValidationStatus(); in PrintValidationMarkerIfNeeded()