Home
last modified time | relevance | path

Searched refs:GetChildAtIndex (Results 1 – 25 of 57) sorted by relevance

123

/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxTuple.cpp32 ValueObjectSP GetChildAtIndex(uint32_t idx) override;
63 ValueObjectSP TupleFrontEnd::GetChildAtIndex(uint32_t idx) { in GetChildAtIndex() function in TupleFrontEnd
75 ValueObjectSP holder_sp = m_base->GetChildAtIndex(idx); in GetChildAtIndex()
79 ValueObjectSP elem_sp = holder_sp->GetChildAtIndex(0); in GetChildAtIndex()
H A DLibCxxUnorderedMap.cpp38 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
64 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
120 LibcxxStdUnorderedMapSyntheticFrontEnd::GetChildAtIndex(uint32_t idx) { in GetChildAtIndex() function in lldb_private::formatters::LibcxxStdUnorderedMapSyntheticFrontEnd
187 auto anon_union_sp = node_sp->GetChildAtIndex(2); in GetChildAtIndex()
329 auto anon_union_sp = hash_node_sp->GetChildAtIndex(2); in Update()
348 if (auto child0_sp = potential_child_sp->GetChildAtIndex(0); in Update()
363 LibCxxUnorderedMapIteratorSyntheticFrontEnd::GetChildAtIndex(uint32_t idx) { in GetChildAtIndex() function in lldb_private::formatters::LibCxxUnorderedMapIteratorSyntheticFrontEnd
365 return m_pair_sp->GetChildAtIndex(idx); in GetChildAtIndex()
H A DLibCxxMap.cpp196 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
234 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
319 lldb_private::formatters::LibcxxStdMapSyntheticFrontEnd::GetChildAtIndex( in GetChildAtIndex() function in lldb_private::formatters::LibcxxStdMapSyntheticFrontEnd
346 auto child0_sp = potential_child_sp->GetChildAtIndex(0); in GetChildAtIndex()
353 auto child0_sp = potential_child_sp->GetChildAtIndex(0); in GetChildAtIndex()
354 auto child1_sp = potential_child_sp->GetChildAtIndex(1); in GetChildAtIndex()
456 auto child0_sp = key_value_sp->GetChildAtIndex(0); in Update()
473 lldb_private::formatters::LibCxxMapIteratorSyntheticFrontEnd::GetChildAtIndex( in GetChildAtIndex() function in lldb_private::formatters::LibCxxMapIteratorSyntheticFrontEnd
478 return m_pair_sp->GetChildAtIndex(idx); in GetChildAtIndex()
H A DLibStdcppUniquePointer.cpp31 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
96 ValueObjectSP ptr_obj = tuple_frontend->GetChildAtIndex(0); in Update()
107 ValueObjectSP del_obj = tuple_frontend->GetChildAtIndex(1); in Update()
119 LibStdcppUniquePtrSyntheticFrontEnd::GetChildAtIndex(uint32_t idx) { in GetChildAtIndex() function in LibStdcppUniquePtrSyntheticFrontEnd
H A DLibStdcppTuple.cpp31 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
70 ValueObjectSP child_sp = current_child->GetChildAtIndex(i); in Update()
92 LibStdcppTupleSyntheticFrontEnd::GetChildAtIndex(uint32_t idx) { in GetChildAtIndex() function in LibStdcppTupleSyntheticFrontEnd
H A DGenericOptional.cpp48 ValueObjectSP GetChildAtIndex(uint32_t idx) override;
86 ValueObjectSP GenericOptionalFrontend::GetChildAtIndex(uint32_t _idx) { in GetChildAtIndex() function in GenericOptionalFrontend
99 ->GetChildAtIndex(0) in GetChildAtIndex()
H A DLibCxxList.cpp140 ValueObjectSP GetChildAtIndex(uint32_t idx) override;
152 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
256 ValueObjectSP ForwardListFrontEnd::GetChildAtIndex(uint32_t idx) { in GetChildAtIndex() function in ForwardListFrontEnd
270 current_sp = current_sp->GetChildAtIndex(1); // get the __value_ child in GetChildAtIndex()
346 lldb::ValueObjectSP ListFrontEnd::GetChildAtIndex(uint32_t idx) { in GetChildAtIndex() function in ListFrontEnd
363 current_sp = current_sp->GetChildAtIndex(1); // get the __value_ child in GetChildAtIndex()
H A DLibStdcpp.cpp48 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
69 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
141 LibstdcppMapIteratorSyntheticFrontEnd::GetChildAtIndex(uint32_t idx) { in GetChildAtIndex() function in LibstdcppMapIteratorSyntheticFrontEnd
147 return m_pair_sp->GetChildAtIndex(idx); in GetChildAtIndex()
229 VectorIteratorSyntheticFrontEnd::GetChildAtIndex(uint32_t idx) { in GetChildAtIndex() function in VectorIteratorSyntheticFrontEnd
384 LibStdcppSharedPtrSyntheticFrontEnd::GetChildAtIndex(uint32_t idx) { in GetChildAtIndex() function in LibStdcppSharedPtrSyntheticFrontEnd
H A DLibCxxQueue.cpp35 ValueObjectSP GetChildAtIndex(uint32_t idx) override { in GetChildAtIndex() function in __anonc2cf8ada0111::QueueFrontEnd
36 return m_container_sp ? m_container_sp->GetChildAtIndex(idx) in GetChildAtIndex()
H A DGenericBitset.cpp40 ValueObjectSP GetChildAtIndex(uint32_t idx) override;
102 ValueObjectSP GenericBitsetFrontEnd::GetChildAtIndex(uint32_t idx) { in GetChildAtIndex() function in GenericBitsetFrontEnd
118 chunk = m_first->GetChildAtIndex(idx / *bit_size); in GetChildAtIndex()
H A DLibCxxVector.cpp30 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
51 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
105 lldb_private::formatters::LibcxxStdVectorSyntheticFrontEnd::GetChildAtIndex( in GetChildAtIndex() function in lldb_private::formatters::LibcxxStdVectorSyntheticFrontEnd
174 lldb_private::formatters::LibcxxVectorBoolSyntheticFrontEnd::GetChildAtIndex( in GetChildAtIndex() function in lldb_private::formatters::LibcxxVectorBoolSyntheticFrontEnd
H A DLibCxxAtomic.cpp95 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
133 lldb_private::formatters::LibcxxStdAtomicSyntheticFrontEnd::GetChildAtIndex( in GetChildAtIndex() function in lldb_private::formatters::LibcxxStdAtomicSyntheticFrontEnd
H A DLibCxxInitializerList.cpp31 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
72 LibcxxInitializerListSyntheticFrontEnd::GetChildAtIndex(uint32_t idx) { in GetChildAtIndex() function in lldb_private::formatters::LibcxxInitializerListSyntheticFrontEnd
H A DLibCxxSpan.cpp32 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
82 lldb_private::formatters::LibcxxStdSpanSyntheticFrontEnd::GetChildAtIndex( in GetChildAtIndex() function in lldb_private::formatters::lldb_private::formatters::LibcxxStdSpanSyntheticFrontEnd
H A DLibCxxValarray.cpp29 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
86 lldb_private::formatters::LibcxxStdValarraySyntheticFrontEnd::GetChildAtIndex( in GetChildAtIndex() function in lldb_private::formatters::LibcxxStdValarraySyntheticFrontEnd
H A DLibCxxSliceArray.cpp61 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
105 lldb_private::formatters::LibcxxStdSliceArraySyntheticFrontEnd::GetChildAtIndex( in GetChildAtIndex() function in lldb_private::formatters::LibcxxStdSliceArraySyntheticFrontEnd
H A DBlockPointer.cpp83 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override { in GetChildAtIndex() function in lldb_private::formatters::BlockPointerSyntheticFrontEnd
178 lldb::ValueObjectSP child_sp = synthetic_children->GetChildAtIndex( in BlockPointerSummaryProvider()
H A DLibCxxProxyArray.cpp40 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
104 lldb_private::formatters::LibcxxStdProxyArraySyntheticFrontEnd::GetChildAtIndex( in GetChildAtIndex() function in lldb_private::formatters::LibcxxStdProxyArraySyntheticFrontEnd
H A DLibCxxVariant.cpp209 ValueObjectSP GetChildAtIndex(uint32_t idx) override;
236 ValueObjectSP VariantFrontEnd::GetChildAtIndex(uint32_t idx) { in GetChildAtIndex() function in VariantFrontEnd
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValueObjectSyntheticFilter.cpp38 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override { in GetChildAtIndex() function in DummySyntheticFrontEnd
39 return m_backend.GetChildAtIndex(idx); in GetChildAtIndex()
247 lldb::ValueObjectSP ValueObjectSynthetic::GetChildAtIndex(uint32_t idx, in GetChildAtIndex() function in ValueObjectSynthetic
275 lldb::ValueObjectSP synth_guy = m_synth_filter_up->GetChildAtIndex(idx); in GetChildAtIndex()
329 return GetChildAtIndex(index, can_create); in GetChildMemberWithName()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DNSArray.cpp55 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
219 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
307 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
324 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
486 lldb_private::formatters::NSArrayMSyntheticFrontEndBase::GetChildAtIndex( in GetChildAtIndex() function in lldb_private::formatters::NSArrayMSyntheticFrontEndBase
687 GetChildAtIndex(uint32_t idx) { in GetChildAtIndex() function in lldb_private::formatters::GenericNSArrayISyntheticFrontEnd
737 lldb_private::formatters::NSArray0SyntheticFrontEnd::GetChildAtIndex( in GetChildAtIndex() function in lldb_private::formatters::NSArray0SyntheticFrontEnd
772 lldb_private::formatters::NSArray1SyntheticFrontEnd::GetChildAtIndex( in GetChildAtIndex() function in lldb_private::formatters::NSArray1SyntheticFrontEnd
H A DNSDictionary.cpp108 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
149 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
181 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
214 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
235 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
268 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
657 lldb_private::formatters::NSDictionaryISyntheticFrontEnd::GetChildAtIndex( in GetChildAtIndex() function in lldb_private::formatters::NSDictionaryISyntheticFrontEnd
779 lldb_private::formatters::NSCFDictionarySyntheticFrontEnd::GetChildAtIndex( in GetChildAtIndex() function in lldb_private::formatters::NSCFDictionarySyntheticFrontEnd
923 NSConstantDictionarySyntheticFrontEnd::GetChildAtIndex(uint32_t idx) { in GetChildAtIndex() function in lldb_private::formatters::NSConstantDictionarySyntheticFrontEnd
1014 lldb_private::formatters::NSDictionary1SyntheticFrontEnd::GetChildAtIndex( in GetChildAtIndex() function in lldb_private::formatters::NSDictionary1SyntheticFrontEnd
[all …]
H A DNSSet.cpp51 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
89 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
122 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
238 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
469 lldb_private::formatters::NSSetISyntheticFrontEnd::GetChildAtIndex( in GetChildAtIndex() function in lldb_private::formatters::NSSetISyntheticFrontEnd
590 lldb_private::formatters::NSCFSetSyntheticFrontEnd::GetChildAtIndex( in GetChildAtIndex() function in lldb_private::formatters::NSCFSetSyntheticFrontEnd
752 GenericNSSetMSyntheticFrontEnd<D32, D64>::GetChildAtIndex(uint32_t idx) { in GetChildAtIndex() function in lldb_private::formatters::GenericNSSetMSyntheticFrontEnd
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DTypeSynthetic.h52 virtual lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) = 0;
118 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override { return nullptr; } in GetChildAtIndex() function
333 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override { in GetChildAtIndex() function
439 lldb::ValueObjectSP GetChildAtIndex(uint32_t idx) override;
/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBFrameExtensions.i54 reg = rs.GetChildAtIndex(j)
62 reg = rs.GetChildAtIndex(j)

123