Home
last modified time | relevance | path

Searched refs:GetChildMemberWithName (Results 1 – 25 of 44) sorted by relevance

12

/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxx.cpp61 lldb::ValueObjectSP lldb_private::formatters::GetChildMemberWithName( in GetChildMemberWithName() function in lldb_private::formatters
64 lldb::ValueObjectSP child_sp = obj.GetChildMemberWithName(name); in GetChildMemberWithName()
78 value = first_child->GetChildMemberWithName("__value_"); in GetFirstValueOfLibCXXCompressedPair()
81 value = pair.GetChildMemberWithName("__first_"); in GetFirstValueOfLibCXXCompressedPair()
93 value = second_child->GetChildMemberWithName("__value_"); in GetSecondValueOfLibCXXCompressedPair()
98 value = pair.GetChildMemberWithName("__second_"); in GetSecondValueOfLibCXXCompressedPair()
113 ValueObjectSP node_sp(obj.GetChildMemberWithName(child_name)); in GetValueOrOldCompressedPair()
120 ValueObjectSP node_sp(obj.GetChildMemberWithName(child_name)); in GetValueOrOldCompressedPair()
128 node_sp = obj.GetChildMemberWithName(compressed_pair_name); in GetValueOrOldCompressedPair()
195 ValueObjectSP ptr_sp(valobj_sp->GetChildMemberWithName("__ptr_")); in LibcxxSmartPointerSummaryProvider()
[all …]
H A DGenericOptional.cpp76 engaged_sp = m_backend.GetChildMemberWithName("__engaged_"); in Update()
78 if (ValueObjectSP payload = m_backend.GetChildMemberWithName("_M_payload")) in Update()
79 engaged_sp = payload->GetChildMemberWithName("_M_engaged"); in Update()
104 val_sp = m_backend.GetChildMemberWithName("__engaged_") in GetChildAtIndex()
107 ->GetChildMemberWithName("__val_"); in GetChildAtIndex()
109 val_sp = m_backend.GetChildMemberWithName("_M_payload") in GetChildAtIndex()
110 ->GetChildMemberWithName("_M_payload"); in GetChildAtIndex()
114 ValueObjectSP candidate = val_sp->GetChildMemberWithName("_M_value"); in GetChildAtIndex()
H A DLibCxxVariant.cpp86 ValueObjectSP index_sp(impl_sp->GetChildMemberWithName("__index")); in LibcxxVariantGetIndexValidity()
117 ValueObjectSP index_sp(impl_sp->GetChildMemberWithName("__index")); in LibcxxVariantIndexValue()
126 ValueObjectSP data_sp(impl_sp->GetChildMemberWithName("__data")); in LibcxxVariantGetNthHead()
133 ValueObjectSP tail_sp(current_level->GetChildMemberWithName("__tail")); in LibcxxVariantGetNthHead()
141 return current_level->GetChildMemberWithName("__head"); in LibcxxVariantGetNthHead()
153 ValueObjectSP impl_sp = GetChildMemberWithName( in LibcxxVariantSummaryProvider()
225 ValueObjectSP impl_sp = formatters::GetChildMemberWithName( in Update()
247 ValueObjectSP impl_sp = formatters::GetChildMemberWithName( in GetChildAtIndex()
274 ValueObjectSP head_value(nth_head->GetChildMemberWithName("__value")); in GetChildAtIndex()
H A DMsvcStlSmartPointer.cpp19 return valobj_sp->GetChildMemberWithName("_Ptr") != nullptr; in IsMsvcStlSmartPointer()
30 ValueObjectSP ptr_sp(valobj_sp->GetChildMemberWithName("_Ptr")); in MsvcStlSmartPointerSummaryProvider()
31 ValueObjectSP ctrl_sp(valobj_sp->GetChildMemberWithName("_Rep")); in MsvcStlSmartPointerSummaryProvider()
44 if (auto uses_sp = ctrl_sp->GetChildMemberWithName("_Uses")) { in MsvcStlSmartPointerSummaryProvider()
54 if (auto weak_count_sp = ctrl_sp->GetChildMemberWithName("_Weaks")) { in MsvcStlSmartPointerSummaryProvider()
150 auto ptr_obj_sp = valobj_sp->GetChildMemberWithName("_Ptr"); in Update()
186 return valobj_sp->GetChildMemberWithName("_Mypair") != nullptr; in IsMsvcStlUniquePtr()
249 ValueObjectSP pair_sp = valobj_sp->GetChildMemberWithName("_Mypair"); in Update()
253 if (auto value_ptr_sp = pair_sp->GetChildMemberWithName("_Myval2")) in Update()
257 if (auto deleter_sp = pair_sp->GetChildMemberWithName("_Myval1")) in Update()
H A DLibCxxUnorderedMap.cpp133 auto table_sp = m_backend.GetChildMemberWithName("__table_"); in GetNodeType()
164 ValueObjectSP value_sp = node_sp->GetChildMemberWithName("__value_"); in GetChildAtIndex()
165 ValueObjectSP hash_sp = node_sp->GetChildMemberWithName("__hash_"); in GetChildAtIndex()
172 hash_sp = node_sp->GetChildMemberWithName("__hash_"); in GetChildAtIndex()
176 value_sp = node_sp->GetChildMemberWithName("__value_"); in GetChildAtIndex()
189 value_sp = anon_union_sp->GetChildMemberWithName("__value_"); in GetChildAtIndex()
196 m_next_element = node_sp->GetChildMemberWithName("__next_").get(); in GetChildAtIndex()
248 return tree_sp->GetChildMemberWithName("__next_"); in GetTreePointer()
256 ValueObjectSP table_sp = m_backend.GetChildMemberWithName("__table_"); in Update()
332 auto hash_iter_sp = valobj_sp->GetChildMemberWithName("__i_"); in Update()
[all …]
H A DLibCxxSliceArray.cpp28 ValueObjectSP ptr_sp = obj->GetChildMemberWithName("__size_"); in LibcxxStdSliceArraySummaryProvider()
33 ptr_sp = obj->GetChildMemberWithName("__stride_"); in LibcxxStdSliceArraySummaryProvider()
133 ValueObjectSP start = m_backend.GetChildMemberWithName("__vp_"); in Update()
134 ValueObjectSP size = m_backend.GetChildMemberWithName("__size_"); in Update()
135 ValueObjectSP stride = m_backend.GetChildMemberWithName("__stride_"); in Update()
H A DMsvcStl.cpp58 ValueObjectSP size_sp = valobj_pair_sp->GetChildMemberWithName("_Mysize"); in ExtractMsvcStlStringInfo()
59 ValueObjectSP capacity_sp = valobj_pair_sp->GetChildMemberWithName("_Myres"); in ExtractMsvcStlStringInfo()
60 ValueObjectSP bx_sp = valobj_pair_sp->GetChildMemberWithName("_Bx"); in ExtractMsvcStlStringInfo()
76 ValueObjectSP buf_sp = bx_sp->GetChildMemberWithName("_Buf"); in ExtractMsvcStlStringInfo()
81 ValueObjectSP ptr_sp = bx_sp->GetChildMemberWithName("_Ptr"); in ExtractMsvcStlStringInfo()
H A DLibStdcpp.cpp111 ValueObjectSP _M_node_sp(valobj_sp->GetChildMemberWithName("_M_node")); in Update()
206 formatters::GetChildMemberWithName(*valobj_sp, m_item_names); in Update()
293 auto ptr_obj_sp = valobj_sp->GetChildMemberWithName("_M_ptr"); in Update()
331 ValueObjectSP ptr_sp(valobj_sp->GetChildMemberWithName("_M_ptr")); in LibStdcppSmartPointerSummaryProvider()
348 if (auto count_sp = pi_sp->GetChildMemberWithName("_M_use_count")) { in LibStdcppSmartPointerSummaryProvider()
358 if (auto weak_count_sp = pi_sp->GetChildMemberWithName("_M_weak_count")) { in LibStdcppSmartPointerSummaryProvider()
H A DLibCxxProxyArray.cpp147 ValueObjectSP vector = m_backend.GetChildMemberWithName("__1d_"); in Update()
163 ValueObjectSP base = m_backend.GetChildMemberWithName("__vp_"); in Update()
164 ValueObjectSP start = vector->GetChildMemberWithName("__begin_"); in Update()
165 ValueObjectSP finish = vector->GetChildMemberWithName("__end_"); in Update()
H A DLibCxxList.cpp38 return ListEntry(m_entry_sp->GetChildMemberWithName("__next_")); in next()
44 return ListEntry(m_entry_sp->GetChildMemberWithName("__prev_")); in prev()
317 m_head = impl_sp->GetChildMemberWithName("__next_").get(); in Update()
427 ValueObjectSP impl_sp(m_backend.GetChildMemberWithName("__end_")); in Update()
430 m_head = impl_sp->GetChildMemberWithName("__next_").get(); in Update()
431 m_tail = impl_sp->GetChildMemberWithName("__prev_").get(); in Update()
H A DLibCxxMap.cpp320 value_type_sp = value_type_sp->GetChildMemberWithName("__value_"); in GetKeyValuePair()
382 m_tree = m_backend.GetChildMemberWithName("__tree_").get(); in Update()
386 m_root_node = m_tree->GetChildMemberWithName("__begin_node_").get(); in Update()
432 auto tree_iter_sp = valobj_sp->GetChildMemberWithName("__i_"); in Update()
445 auto iter_pointer_sp = tree_iter_sp->GetChildMemberWithName("__ptr_"); in Update()
455 auto key_value_sp = node_pointer_sp->GetChildMemberWithName("__value_"); in Update()
H A DLibCxxVector.cpp158 m_start = m_backend.GetChildMemberWithName("__begin_").get(); in Update()
159 m_finish = m_backend.GetChildMemberWithName("__end_").get(); in Update()
249 ValueObjectSP size_sp(valobj_sp->GetChildMemberWithName("__size_")); in Update()
255 ValueObjectSP begin_sp(valobj_sp->GetChildMemberWithName("__begin_")); in Update()
H A DLibCxxTuple.cpp54 base_sp = m_backend.GetChildMemberWithName("__base_"); in Update()
57 base_sp = m_backend.GetChildMemberWithName("base_"); in Update()
H A DLibCxxAtomic.cpp58 ValueObjectSP member__a_ = non_sythetic->GetChildMemberWithName("__a_"); in GetLibCxxAtomicValue()
63 member__a_->GetChildMemberWithName("__a_value"); in GetLibCxxAtomicValue()
H A DLibCxxInitializerList.cpp63 ValueObjectSP size_sp(m_backend.GetChildMemberWithName("__size_")); in CalculateNumChildren()
98 m_start = m_backend.GetChildMemberWithName("__begin_").get(); in Update()
H A DLibCxxSpan.cpp97 ValueObjectSP data_type_finder_sp = GetChildMemberWithName( in Update()
118 if (auto size_sp = GetChildMemberWithName( in Update()
H A DLibCxxValarray.cpp114 ValueObjectSP start = m_backend.GetChildMemberWithName("__begin_"); in Update()
115 ValueObjectSP finish = m_backend.GetChildMemberWithName("__end_"); in Update()
H A DLibStdcppUniquePointer.cpp69 ValueObjectSP obj_child_sp = valobj_sp->GetChildMemberWithName("_M_t"); in GetTuple()
73 ValueObjectSP obj_subchild_sp = obj_child_sp->GetChildMemberWithName("_M_t"); in GetTuple()
H A DLibCxxQueue.cpp53 ValueObjectSP c_sp = m_backend.GetChildMemberWithName("c"); in Update()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionUtil.cpp21 if (this_val_sp->GetChildMemberWithName("this")) in GetLambdaValueObject()
/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBValueDocstrings.i133 ) lldb::SBValue::GetChildMemberWithName;
H A DSBValueExtensions.i40 return self.valobj.GetChildMemberWithName(key)
165 item = item.GetChildMemberWithName(next_item_name)
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntime.cpp523 exception_sp->GetChildMemberWithName("reserved"); in GetBacktraceThreadFromException()
577 auto frames_value = return_addresses->GetChildMemberWithName("_frames"); in GetBacktraceThreadFromException()
581 auto count_value = return_addresses->GetChildMemberWithName("_cnt"); in GetBacktraceThreadFromException()
585 auto ignore_value = return_addresses->GetChildMemberWithName("_ignore"); in GetBacktraceThreadFromException()
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBValue.h208 lldb::SBValue GetChildMemberWithName(const char *name);
212 lldb::SBValue GetChildMemberWithName(const char *name,
/freebsd/contrib/llvm-project/lldb/source/ValueObject/
H A DDILEval.cpp128 value_sp = value_sp->GetChildMemberWithName(name_ref); in LookupIdentifier()
289 base->GetChildMemberWithName(node->GetFieldName()); in Visit()
294 field_obj = field_obj->GetChildMemberWithName(node->GetFieldName()); in Visit()

12