Home
last modified time | relevance | path

Searched refs:GetNumChildren (Results 1 – 25 of 79) sorted by relevance

1234

/llvm-project-15.0.7/lldb/test/API/functionalities/pointer_num_children/
H A DTestPointerNumChildren.py18 self.assertEqual(1, result.GetNumChildren())
19 self.assertEqual(2, result.GetChildAtIndex(0).GetNumChildren())
24 self.assertEqual(1, result.GetNumChildren())
25 self.assertEqual(2, result.GetChildAtIndex(0).GetNumChildren())
/llvm-project-15.0.7/lldb/test/API/functionalities/dynamic_value_child_count/
H A DTestDynamicValueChildCount.py70 self.assertEquals(b.GetNumChildren(), 0, "b has 0 children")
72 self.assertEquals(b.GetNumChildren(), 0, "b still has 0 children")
74 self.assertNotEqual(b.GetNumChildren(), 0, "b now has 1 child")
77 b.GetNumChildren(), 0,
/llvm-project-15.0.7/lldb/test/API/lang/c/array_types/
H A DTestArrayTypes.py170 self.assertEquals(variable.GetNumChildren(), 4,
183 self.assertEquals(variable.GetNumChildren(), 16,
192 self.assertEquals(variable.GetNumChildren(), 2,
196 self.assertEquals(child0.GetNumChildren(), 3,
206 self.assertEquals(variable.GetNumChildren(), 6,
/llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/
H A DTestLibCxxAtomic.py52 self.assertEqual(s_atomic.GetNumChildren(), 1)
54 self.assertEqual(i_atomic.GetNumChildren(), 1)
58 self.assertEqual(s.GetNumChildren(), 2, "s has two children")
/llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-synthval/
H A DTestDataFormatterSynthVal.py113 self.assertEqual(ma.GetNumChildren(15), 15)
114 self.assertEqual(ma.GetNumChildren(16), 16)
115 self.assertEqual(ma.GetNumChildren(17), 16)
/llvm-project-15.0.7/lldb/test/API/lang/cpp/template-specialization-type/
H A DTestTemplateSpecializationType.py18 self.assertEquals(2, v.GetNumChildren())
26 self.assertEquals(2, v.GetNumChildren())
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBValue.i322 GetNumChildren ();
332 An integer value capped to the argument max.") GetNumChildren;
334 GetNumChildren (uint32_t max);
458 return int(self.sbvalue.GetNumChildren())
484 return self.GetNumChildren()
510 …num_children = property(GetNumChildren, None, doc='''A read only property that returns the number …
/llvm-project-15.0.7/lldb/test/API/lang/objc/rdar-12408181/
H A DTestRdar12408181.py54 window.GetNumChildren() > 1,
57 window_dynamic.GetNumChildren() > 1,
/llvm-project-15.0.7/lldb/test/API/python_api/value/empty_class/
H A DTestValueAPIEmptyClass.py40 self.assertEqual(e.GetNumChildren(), 0)
52 self.assertEqual(epd.GetNumChildren(), 0)
/llvm-project-15.0.7/lldb/test/API/python_api/formatters/
H A DTestFormattersSBAPI.py181 foo_var.GetNumChildren(), 2,
196 foo_var.GetNumChildren() == 2,
211 foo_var.GetNumChildren(), 2,
475 int_vector.GetNumChildren(), 0,
485 int_vector.GetNumChildren() == 0,
495 int_vector.GetNumChildren(), 0,
/llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/synthupdate/
H A DTestSyntheticFilterRecompute.py72 id_x.GetNumChildren(), 7,
76 id_x.GetNumChildren(), 7,
/llvm-project-15.0.7/lldb/test/API/lang/objc/single-entry-dictionary/
H A DTestObjCSingleEntryDictionary.py65 d1.GetNumChildren(), 1,
72 pair.GetNumChildren(), 2,
/llvm-project-15.0.7/lldb/test/API/python_api/value/
H A DTestValueAPI.py58 self.assertEqual(days_of_week.GetNumChildren(), 7, VALID_VARIABLE)
79 self.assertEqual(weekdays.GetNumChildren(), 5, VALID_VARIABLE)
86 self.assertEqual(g_table.GetNumChildren(), 2, VALID_VARIABLE)
/llvm-project-15.0.7/llvm/utils/
H A DlldbDataFormatters.py166 num_elements = valobj.GetNumChildren()
177 if valobj.GetNumChildren() == 2:
202 if valobj.GetNumChildren() == 1:
/llvm-project-15.0.7/lldb/test/API/lang/cpp/class_static/
H A DTestStaticVariables.py143 self.assertEqual(val.GetNumChildren(), 2)
147 self.assertEqual(val.GetNumChildren(), 2)
/llvm-project-15.0.7/lldb/test/API/lang/cpp/subst_template_type_param/
H A DTestSubstTemplateTypeParam.py30 self.assertEqual(result.GetNumChildren(), 1)
/llvm-project-15.0.7/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxQueue.cpp32 return m_container_sp ? m_container_sp->GetNumChildren() : 0; in CalculateNumChildren()
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBValue.h275 uint32_t GetNumChildren();
277 uint32_t GetNumChildren(uint32_t max);
/llvm-project-15.0.7/lldb/source/Core/
H A DValueObjectMemory.cpp131 auto child_count = m_type_sp->GetNumChildren(true); in CalculateNumChildren()
138 m_compiler_type.GetNumChildren(omit_empty_base_classes, &exe_ctx); in CalculateNumChildren()
H A DValueObjectRegister.cpp120 const size_t num_children = GetNumChildren(); in CreateChildAtIndex()
227 auto children_count = GetCompilerType().GetNumChildren(true, &exe_ctx); in CalculateNumChildren()
H A DValueObjectDynamicValue.cpp91 auto children_count = GetCompilerType().GetNumChildren(true, &exe_ctx); in CalculateNumChildren()
94 return m_parent->GetNumChildren(max); in CalculateNumChildren()
/llvm-project-15.0.7/lldb/test/API/lang/c/local_types/
H A DTestUseClosestType.py32 self.assertEqual(result.GetNumChildren(), num_children, "Got the right number of children")
/llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-stl/libcxx/queue/
H A DTestDataFormatterLibcxxQueue.py25 self.assertEqual(var.GetNumChildren(), 5)
/llvm-project-15.0.7/lldb/test/API/lang/c/unions/
H A DTestUnionMembers.py36 self.assertEqual(val.GetNumChildren(), 2)
/llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/vector-types/
H A DTestVectorTypesFormatting.py57 v.GetNumChildren(), 4,

1234