HomeSort by relevance Sort by last modified time
    Searched refs:child_sp (Results 1 - 5 of 5) sorted by null

  /external/lldb/source/DataFormatters/
TypeSummary.cpp 85 lldb::ValueObjectSP child_sp(object->GetChildAtIndex(idx, true));
86 if (child_sp.get())
92 s.PutCString(child_sp.get()->GetName().AsCString());
95 child_sp.get()->DumpPrintableRepresentation(s,
NSDictionary.cpp 220 lldb::ValueObjectSP child_sp; local
221 m_backend.GetTargetSP()->EvaluateExpression(object_fetcher_expr.GetData(), m_backend.GetFrameSP().get(), child_sp,
223 if (child_sp)
224 child_sp->SetName(ConstString(idx_name.GetData()));
225 return child_sp;
LibCxx.cpp 451 ValueObjectSP child_sp = ValueObject::CreateValueObjectFromAddress(name.GetData(), offset, m_backend.GetExecutionContextRef(), m_element_type); local
452 m_children[idx] = child_sp;
453 return child_sp;
  /external/lldb/source/API/
SBValue.cpp 847 lldb::ValueObjectSP child_sp; local
855 child_sp = value_sp->GetChildAtIndex (idx, can_create);
856 if (can_create_synthetic && !child_sp)
860 child_sp = value_sp->GetSyntheticArrayMemberFromPointer(idx, can_create);
864 child_sp = value_sp->GetSyntheticArrayMemberFromArray(idx, can_create);
870 sb_value.SetSP (child_sp, use_dynamic, GetPreferSyntheticValue());
914 lldb::ValueObjectSP child_sp; local
923 child_sp = value_sp->GetChildMemberWithName (str_name, true);
927 sb_value.SetSP(child_sp, use_dynamic_value, GetPreferSyntheticValue());
1025 lldb::ValueObjectSP child_sp; local
    [all...]
  /external/lldb/source/Core/
ValueObject.cpp 497 ValueObjectSP child_sp; local
515 return child_sp;
611 ValueObjectSP child_sp; local
627 child_sp = GetChildAtIndex(*pos, can_create);
630 if (child_sp)
632 ValueObjectSP new_child_sp(child_sp->GetChildAtIndex (*pos, can_create));
633 child_sp = new_child_sp;
637 child_sp.reset();
642 return child_sp;
897 ValueObjectSP child_sp = GetChildAtIndex(0, true) local
    [all...]

Completed in 88 milliseconds