/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
H A D | LibCxx.cpp | 37 lldb::ValueObjectSP lldb_private::formatters::GetChildMemberWithName( in GetChildMemberWithName() function in lldb_private::formatters 40 lldb::ValueObjectSP child_sp = obj.GetChildMemberWithName(name); in GetChildMemberWithName() 54 value = first_child->GetChildMemberWithName("__value_"); in GetFirstValueOfLibCXXCompressedPair() 57 value = pair.GetChildMemberWithName("__first_"); in GetFirstValueOfLibCXXCompressedPair() 69 value = second_child->GetChildMemberWithName("__value_"); in GetSecondValueOfLibCXXCompressedPair() 74 value = pair.GetChildMemberWithName("__second_"); in GetSecondValueOfLibCXXCompressedPair() 132 ValueObjectSP ptr_sp(valobj_sp->GetChildMemberWithName("__ptr_")); in LibcxxSmartPointerSummaryProvider() 175 ValueObjectSP ptr_sp(valobj_sp->GetChildMemberWithName("__ptr_")); in LibcxxUniquePointerSummaryProvider() 245 return valobj_sp->GetChildMemberWithName("__ptr_"); in GetChildAtIndex() 248 if (auto ptr_sp = valobj_sp->GetChildMemberWithName("__ptr_")) { in GetChildAtIndex() [all …]
|
H A D | GenericOptional.cpp | 70 engaged_sp = m_backend.GetChildMemberWithName("__engaged_"); in Update() 72 engaged_sp = m_backend.GetChildMemberWithName("_M_payload") in Update() 73 ->GetChildMemberWithName("_M_engaged"); in Update() 97 val_sp = m_backend.GetChildMemberWithName("__engaged_") in GetChildAtIndex() 100 ->GetChildMemberWithName("__val_"); in GetChildAtIndex() 102 val_sp = m_backend.GetChildMemberWithName("_M_payload") in GetChildAtIndex() 103 ->GetChildMemberWithName("_M_payload"); in GetChildAtIndex() 107 ValueObjectSP candidate = val_sp->GetChildMemberWithName("_M_value"); in GetChildAtIndex()
|
H A D | LibCxxVariant.cpp | 86 ValueObjectSP index_sp(impl_sp->GetChildMemberWithName("__index")); in LibcxxVariantGetIndexValidity() 114 ValueObjectSP index_sp(impl_sp->GetChildMemberWithName("__index")); in LibcxxVariantIndexValue() 123 ValueObjectSP data_sp(impl_sp->GetChildMemberWithName("__data")); in LibcxxVariantGetNthHead() 130 ValueObjectSP tail_sp(current_level->GetChildMemberWithName("__tail")); in LibcxxVariantGetNthHead() 138 return current_level->GetChildMemberWithName("__head"); in LibcxxVariantGetNthHead() 150 ValueObjectSP impl_sp = GetChildMemberWithName( in LibcxxVariantSummaryProvider() 218 ValueObjectSP impl_sp = formatters::GetChildMemberWithName( in Update() 240 ValueObjectSP impl_sp = formatters::GetChildMemberWithName( in GetChildAtIndex() 267 ValueObjectSP head_value(nth_head->GetChildMemberWithName("__value")); in GetChildAtIndex()
|
H A D | LibCxxUnorderedMap.cpp | 135 ValueObjectSP value_sp = node_sp->GetChildMemberWithName("__value_"); in GetChildAtIndex() 136 ValueObjectSP hash_sp = node_sp->GetChildMemberWithName("__hash_"); in GetChildAtIndex() 174 hash_sp = node_sp->GetChildMemberWithName("__hash_"); in GetChildAtIndex() 178 value_sp = node_sp->GetChildMemberWithName("__value_"); in GetChildAtIndex() 191 value_sp = anon_union_sp->GetChildMemberWithName("__value_"); in GetChildAtIndex() 198 m_next_element = node_sp->GetChildMemberWithName("__next_").get(); in GetChildAtIndex() 225 ValueObjectSP table_sp = m_backend.GetChildMemberWithName("__table_"); in Update() 229 ValueObjectSP p2_sp = table_sp->GetChildMemberWithName("__p2_"); in Update() 237 ValueObjectSP p1_sp = table_sp->GetChildMemberWithName("__p1_"); in Update() 245 m_tree = value_sp->GetChildMemberWithName("__next_").get(); in Update() [all …]
|
H A D | LibCxxSliceArray.cpp | 28 ValueObjectSP ptr_sp = obj->GetChildMemberWithName("__size_"); in LibcxxStdSliceArraySummaryProvider() 33 ptr_sp = obj->GetChildMemberWithName("__stride_"); in LibcxxStdSliceArraySummaryProvider() 134 ValueObjectSP start = m_backend.GetChildMemberWithName("__vp_"); in Update() 135 ValueObjectSP size = m_backend.GetChildMemberWithName("__size_"); in Update() 136 ValueObjectSP stride = m_backend.GetChildMemberWithName("__stride_"); in Update()
|
H A D | LibCxxList.cpp | 37 return ListEntry(m_entry_sp->GetChildMemberWithName("__next_")); in next() 43 return ListEntry(m_entry_sp->GetChildMemberWithName("__prev_")); in prev() 295 ValueObjectSP impl_sp(m_backend.GetChildMemberWithName("__before_begin_")); in Update() 301 m_head = impl_sp->GetChildMemberWithName("__next_").get(); in Update() 316 ValueObjectSP size_alloc(m_backend.GetChildMemberWithName("__size_alloc_")); in CalculateNumChildren() 409 ValueObjectSP impl_sp(m_backend.GetChildMemberWithName("__end_")); in Update() 412 m_head = impl_sp->GetChildMemberWithName("__next_").get(); in Update() 413 m_tail = impl_sp->GetChildMemberWithName("__prev_").get(); in Update()
|
H A D | LibCxxMap.cpp | 265 ValueObjectSP size_node(m_tree->GetChildMemberWithName("__pair3_")); in CalculateNumChildren() 309 value_type_sp = value_type_sp->GetChildMemberWithName("__value_"); in GetKeyValuePair() 371 m_tree = m_backend.GetChildMemberWithName("__tree_").get(); in Update() 374 m_root_node = m_tree->GetChildMemberWithName("__begin_node_").get(); in Update() 420 auto tree_iter_sp = valobj_sp->GetChildMemberWithName("__i_"); in Update() 433 auto iter_pointer_sp = tree_iter_sp->GetChildMemberWithName("__ptr_"); in Update() 443 auto key_value_sp = node_pointer_sp->GetChildMemberWithName("__value_"); in Update()
|
H A D | LibCxxProxyArray.cpp | 148 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 D | LibCxxVector.cpp | 123 m_backend.GetChildMemberWithName("__end_cap_")); in Update() 138 m_start = m_backend.GetChildMemberWithName("__begin_").get(); in Update() 139 m_finish = m_backend.GetChildMemberWithName("__end_").get(); in Update() 237 ValueObjectSP size_sp(valobj_sp->GetChildMemberWithName("__size_")); in Update() 243 ValueObjectSP begin_sp(valobj_sp->GetChildMemberWithName("__begin_")); in Update()
|
H A D | LibCxxTuple.cpp | 50 base_sp = m_backend.GetChildMemberWithName("__base_"); in Update() 53 base_sp = m_backend.GetChildMemberWithName("base_"); in Update()
|
H A D | LibCxxAtomic.cpp | 58 ValueObjectSP member__a_ = non_sythetic->GetChildMemberWithName("__a_"); in GetLibCxxAtomicValue() 63 member__a_->GetChildMemberWithName("__a_value"); in GetLibCxxAtomicValue()
|
H A D | LibCxxInitializerList.cpp | 65 ValueObjectSP size_sp(m_backend.GetChildMemberWithName("__size_")); in CalculateNumChildren() 96 m_start = m_backend.GetChildMemberWithName("__begin_").get(); in Update()
|
H A D | LibCxxSpan.cpp | 99 ValueObjectSP data_type_finder_sp = GetChildMemberWithName( in Update() 116 if (auto size_sp = GetChildMemberWithName( in Update()
|
H A D | LibCxxValarray.cpp | 115 ValueObjectSP start = m_backend.GetChildMemberWithName("__begin_"); in Update() 116 ValueObjectSP finish = m_backend.GetChildMemberWithName("__end_"); in Update()
|
H A D | LibStdcpp.cpp | 113 ValueObjectSP _M_node_sp(valobj_sp->GetChildMemberWithName("_M_node")); in Update() 208 formatters::GetChildMemberWithName(*valobj_sp, m_item_names); in Update() 409 auto ptr_obj_sp = valobj_sp->GetChildMemberWithName("_M_ptr"); in Update() 443 ValueObjectSP ptr_sp(valobj_sp->GetChildMemberWithName("_M_ptr")); in LibStdcppSmartPointerSummaryProvider()
|
H A D | LibStdcppUniquePointer.cpp | 72 ValueObjectSP obj_child_sp = valobj_sp->GetChildMemberWithName("_M_t"); in GetTuple() 76 ValueObjectSP obj_subchild_sp = obj_child_sp->GetChildMemberWithName("_M_t"); in GetTuple()
|
H A D | LibCxxQueue.cpp | 52 ValueObjectSP c_sp = m_backend.GetChildMemberWithName("c"); in Update()
|
H A D | LibCxxRangesRefView.cpp | 65 GetChildMemberWithName(m_backend, {ConstString("__range_")}); in Update()
|
H A D | LibStdcppTuple.cpp | 76 child_sp->GetChildMemberWithName("_M_head_impl"); in Update()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ClangExpressionUtil.cpp | 21 if (this_val_sp->GetChildMemberWithName("this")) in GetLambdaValueObject()
|
/freebsd/contrib/llvm-project/lldb/bindings/interface/ |
H A D | SBValueDocstrings.i | 133 ) lldb::SBValue::GetChildMemberWithName;
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
H A D | AppleObjCRuntime.cpp | 523 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 D | SBValue.h | 211 lldb::SBValue GetChildMemberWithName(const char *name); 215 lldb::SBValue GetChildMemberWithName(const char *name,
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ |
H A D | CPPLanguageRuntime.cpp | 145 ValueObjectSP member_f_(valobj_sp->GetChildMemberWithName("__f_")); in FindLibCppStdFunctionCallableInfo() 148 ValueObjectSP sub_member_f_(member_f_->GetChildMemberWithName("__f_")); in FindLibCppStdFunctionCallableInfo()
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | ValueObject.cpp | 401 root = root->GetChildMemberWithName(name); in GetChildAtNamePath() 415 ValueObjectSP ValueObject::GetChildMemberWithName(llvm::StringRef name, in GetChildMemberWithName() function in ValueObject 2305 root->GetChildMemberWithName(child_name); in GetValueForExpressionPath_Impl() 2324 child_valobj_sp->GetChildMemberWithName(child_name); in GetValueForExpressionPath_Impl() 2333 child_valobj_sp->GetChildMemberWithName(child_name); in GetValueForExpressionPath_Impl() 2342 child_valobj_sp->GetChildMemberWithName(child_name); in GetValueForExpressionPath_Impl() 2347 child_valobj_sp->GetChildMemberWithName(child_name); in GetValueForExpressionPath_Impl() 2374 root->GetChildMemberWithName(child_name); in GetValueForExpressionPath_Impl() 2392 child_valobj_sp->GetChildMemberWithName(child_name); in GetValueForExpressionPath_Impl() 2401 child_valobj_sp->GetChildMemberWithName(child_name); in GetValueForExpressionPath_Impl() [all …]
|