Searched refs:child_sp (Results 1 - 7 of 7) sorted by relevance

/freebsd-10.1-release/contrib/llvm/tools/lldb/source/DataFormatters/
H A DValueObjectPrinter.cpp458 ValueObjectPrinter::PrintChild (ValueObjectSP child_sp, argument
465 if (child_sp.get())
467 ValueObjectPrinter child_printer(child_sp.get(),
525 ValueObjectSP child_sp(synth_m_valobj->GetChildAtIndex(idx, true));
526 PrintChild (child_sp, curr_ptr_depth);
561 lldb::ValueObjectSP child_sp(synth_m_valobj->GetChildAtIndex(idx, true));
562 lldb::ValueObjectSP child_dyn_sp = child_sp.get() ? child_sp->GetDynamicValue(options.m_use_dynamic) : child_sp;
564 child_sp
[all...]
H A DNSDictionary.cpp220 lldb::ValueObjectSP child_sp; local
223 m_backend.GetTargetSP()->EvaluateExpression(object_fetcher_expr.GetData(), m_backend.GetFrameSP().get(), child_sp,
225 if (child_sp)
226 child_sp->SetName(ConstString(idx_name.GetData()));
227 return child_sp;
H A DLibCxx.cpp503 ValueObjectSP child_sp = ValueObject::CreateValueObjectFromAddress(name.GetData(), offset, m_backend.GetExecutionContextRef(), m_element_type); local
504 m_children[idx] = child_sp;
505 return child_sp;
H A DFormatManager.cpp489 ValueObjectSP child_sp(valobj.GetChildAtIndex(idx, true));
491 if (!child_sp)
495 if (child_sp->GetSyntheticChildren().get() != nullptr)
498 total_children_name_len += child_sp->GetName().GetLength();
507 if (child_sp->GetSummaryFormat())
510 if (child_sp->GetSummaryFormat()->DoesPrintChildren())
515 if (child_sp->GetNumChildren())
520 if (!child_sp->GetSummaryFormat())
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/API/
H A DSBValue.cpp866 lldb::ValueObjectSP child_sp; local
874 child_sp = value_sp->GetChildAtIndex (idx, can_create);
875 if (can_create_synthetic && !child_sp)
879 child_sp = value_sp->GetSyntheticArrayMemberFromPointer(idx, can_create);
883 child_sp = value_sp->GetSyntheticArrayMemberFromArray(idx, can_create);
889 sb_value.SetSP (child_sp, use_dynamic, GetPreferSyntheticValue());
933 lldb::ValueObjectSP child_sp; local
942 child_sp = value_sp->GetChildMemberWithName (str_name, true);
946 sb_value.SetSP(child_sp, use_dynamic_value, GetPreferSyntheticValue());
1044 lldb::ValueObjectSP child_sp; local
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Core/
H A DValueObject.cpp505 ValueObjectSP child_sp; local
523 return child_sp;
699 ValueObjectSP child_sp; local
715 child_sp = GetChildAtIndex(*pos, can_create);
718 if (child_sp)
720 ValueObjectSP new_child_sp(child_sp->GetChildAtIndex (*pos, can_create));
721 child_sp = new_child_sp;
725 child_sp.reset();
730 return child_sp;
985 ValueObjectSP child_sp local
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
H A DValueObjectPrinter.h353 PrintChild (lldb::ValueObjectSP child_sp,

Completed in 129 milliseconds