Searched refs:GetChildAtIndex (Results 1 - 25 of 40) sorted by relevance

12

/external/lldb/examples/scripting/
H A Dtree_utils.py93 left_size = tree_size (root.GetChildAtIndex(1));
94 right_size = tree_size (root.GetChildAtIndex(2));
110 if (root.GetChildAtIndex(1).GetValue() != None) and (int (root.GetChildAtIndex(1).GetValue(), 16) != 0):
111 print_tree (root.GetChildAtIndex(1))
113 print root.GetChildAtIndex(0).GetSummary()
115 if (root.GetChildAtIndex(2).GetValue() != None) and (int (root.GetChildAtIndex(2).GetValue(), 16) != 0):
116 print_tree (root.GetChildAtIndex(2))
/external/lldb/test/functionalities/recursion/
H A DTestValueObjectRecursion.py57 child = root.GetChildAtIndex(1)
62 child = child.GetChildAtIndex(1)
66 self.assertTrue(child.GetChildAtIndex(0).IsValid(),"the deep ValueObject has no value")
67 self.assertTrue(child.GetChildAtIndex(0).GetValueAsUnsigned() != 0,"the deep ValueObject has a zero value")
68 self.assertTrue(child.GetChildAtIndex(1).GetValueAsUnsigned() != 0, "the deep ValueObject has no next")
/external/lldb/examples/summaries/
H A Dobjc.py13 return BOOL_SummaryProvider (valobj.GetChildAtIndex(0),dict)
/external/lldb/test/python_api/default-constructor/
H A Dsb_type.py14 obj.GetChildAtIndex(True, 0, member)
H A Dsb_value.py24 obj.GetChildAtIndex(1)
25 obj.GetChildAtIndex(2, lldb.eNoDynamicValues, False)
/external/lldb/source/DataFormatters/
H A DTypeSynthetic.cpp93 ScriptedSyntheticChildren::FrontEnd::GetChildAtIndex (size_t idx) function in class:ScriptedSyntheticChildren::FrontEnd
98 return m_interpreter->GetChildAtIndex(m_wrapper_sp, idx);
H A DLibStdcpp.cpp50 lldb_private::formatters::LibstdcppVectorBoolSyntheticFrontEnd::GetChildAtIndex (size_t idx) function in class:lldb_private::formatters::LibstdcppVectorBoolSyntheticFrontEnd
274 lldb_private::formatters::LibstdcppMapIteratorSyntheticFrontEnd::GetChildAtIndex (size_t idx) function in class:lldb_private::formatters::LibstdcppMapIteratorSyntheticFrontEnd
281 return m_pair_sp->GetChildAtIndex(idx, true);
H A DLibCxx.cpp51 lldb_private::formatters::LibcxxVectorBoolSyntheticFrontEnd::GetChildAtIndex (size_t idx) function in class:lldb_private::formatters::LibcxxVectorBoolSyntheticFrontEnd
233 lldb_private::formatters::LibCxxMapIteratorSyntheticFrontEnd::GetChildAtIndex (size_t idx) function in class:lldb_private::formatters::LibCxxMapIteratorSyntheticFrontEnd
237 return m_pair_ptr->GetChildAtIndex(idx, true);
309 lldb_private::formatters::LibcxxSharedPtrSyntheticFrontEnd::GetChildAtIndex (size_t idx) function in class:lldb_private::formatters::LibcxxSharedPtrSyntheticFrontEnd
438 lldb_private::formatters::LibcxxStdVectorSyntheticFrontEnd::GetChildAtIndex (size_t idx) function in class:lldb_private::formatters::LibcxxStdVectorSyntheticFrontEnd
H A DNSArray.cpp118 lldb_private::formatters::NSArrayMSyntheticFrontEnd::GetChildAtIndex (size_t idx) function in class:lldb_private::formatters::NSArrayMSyntheticFrontEnd
268 lldb_private::formatters::NSArrayISyntheticFrontEnd::GetChildAtIndex (size_t idx) function in class:lldb_private::formatters::NSArrayISyntheticFrontEnd
342 lldb_private::formatters::NSArrayCodeRunningSyntheticFrontEnd::GetChildAtIndex (size_t idx) function in class:lldb_private::formatters::NSArrayCodeRunningSyntheticFrontEnd
H A DNSSet.cpp245 lldb_private::formatters::NSSetISyntheticFrontEnd::GetChildAtIndex (size_t idx) function in class:lldb_private::formatters::NSSetISyntheticFrontEnd
386 lldb_private::formatters::NSSetMSyntheticFrontEnd::GetChildAtIndex (size_t idx) function in class:lldb_private::formatters::NSSetMSyntheticFrontEnd
460 lldb_private::formatters::NSOrderedSetSyntheticFrontEnd::GetChildAtIndex (size_t idx) function in class:lldb_private::formatters::NSOrderedSetSyntheticFrontEnd
/external/lldb/include/lldb/DataFormatters/
H A DCXXFormatterFunctions.h204 GetChildAtIndex (size_t idx);
235 GetChildAtIndex (size_t idx);
266 GetChildAtIndex (size_t idx);
311 GetChildAtIndex (size_t idx);
369 GetChildAtIndex (size_t idx);
401 GetChildAtIndex (size_t idx);
445 GetChildAtIndex (size_t idx);
478 GetChildAtIndex (size_t idx);
525 GetChildAtIndex (size_t idx);
555 GetChildAtIndex (size_
[all...]
H A DTypeSynthetic.h51 GetChildAtIndex (size_t idx) = 0;
382 GetChildAtIndex (size_t idx) function in class:lldb_private::TypeFilterImpl::FrontEnd
548 GetChildAtIndex (size_t idx);
/external/clang/utils/
H A DClangDataFormat.py41 self.ID = srcloc.GetChildAtIndex(0).GetValueAsUnsigned()
85 self.Data_value = strref.GetChildAtIndex(0)
86 self.Length = strref.GetChildAtIndex(1).GetValueAsUnsigned()
143 child = value.GetChildAtIndex(i, 0, False)
/external/lldb/source/Core/
H A DValueObjectSyntheticFilter.cpp37 GetChildAtIndex (size_t idx) function in class:DummySyntheticFrontEnd
195 ValueObjectSynthetic::GetChildAtIndex (size_t idx, bool can_create) function in class:ValueObjectSynthetic
205 lldb::ValueObjectSP synth_guy = m_synth_filter_ap->GetChildAtIndex (idx);
228 return GetChildAtIndex(index, can_create);
/external/lldb/test/lang/objc/rdar-12408181/
H A DTestRdar12408181.py53 self.assertTrue(window.GetChildAtIndex(0).IsValid(), "NSWindow (static) has an invalid child")
54 self.assertTrue(window_dynamic.GetChildAtIndex(0).IsValid(), "NSWindow (dynamic) has an invalid child")
/external/lldb/test/lang/c/array_types/
H A DTestArrayTypes.py164 child3 = variable.GetChildAtIndex(3)
183 child0 = variable.GetChildAtIndex(0)
187 child0_2 = child0.GetChildAtIndex(2)
197 child5 = variable.GetChildAtIndex(5)
/external/chromium_org/content/shell/renderer/test_runner/
H A Dweb_ax_object_proxy.h41 virtual v8::Handle<v8::Object> GetChildAtIndex(unsigned index);
143 virtual v8::Handle<v8::Object> GetChildAtIndex(unsigned index) OVERRIDE;
/external/lldb/test/lang/cpp/class_static/
H A DTestStaticVariables.py120 child1 = val.GetChildAtIndex(1)
122 child1_x = child1.GetChildAtIndex(0)
/external/lldb/test/python_api/value/
H A DTestValueAPI.py100 pointed = value.GetChildAtIndex(0)
126 child = value.GetChildAtIndex(5, lldb.eNoDynamicValues, True)
/external/lldb/include/lldb/Core/
H A DValueObjectSyntheticFilter.h55 GetChildAtIndex (size_t idx, bool can_create);
/external/lldb/test/functionalities/return-value/
H A DTestReturnValue.py57 in_child = in_value.GetChildAtIndex (idx)
79 in_child = in_value.GetChildAtIndex(idx)
80 ret_child = ret_value.GetChildAtIndex(idx)
/external/lldb/examples/synthetic/
H A Dlibcxx.py35 r = valobj.GetChildAtIndex(0)
36 B = r.GetChildAtIndex(0)
37 first = B.GetChildAtIndex(0)
38 D = first.GetChildAtIndex(0)
39 l = D.GetChildAtIndex(0)
40 s = D.GetChildAtIndex(1)
41 D20 = s.GetChildAtIndex(0)
42 size_mode = D20.GetChildAtIndex(0).GetValueAsUnsigned(0)
45 return make_string(s.GetChildAtIndex(1),size)
47 data_ptr = l.GetChildAtIndex(
[all...]
/external/lldb/scripts/Python/interface/
H A DSBValue.i173 GetChildAtIndex (uint32_t idx);
226 ") GetChildAtIndex;
228 GetChildAtIndex (uint32_t idx,
/external/lldb/examples/python/
H A Dsbvalue.py41 return value(self.sbvalue.GetChildAtIndex(key, lldb.eNoDynamicValues, True))
82 children.append(value(self.sbvalue.GetChildAtIndex(i, lldb.eNoDynamicValues, True)))
/external/lldb/include/lldb/API/
H A DSBValue.h147 GetChildAtIndex (uint32_t idx);
224 GetChildAtIndex (uint32_t idx,

Completed in 265 milliseconds

12