| /llvm-project-15.0.7/lldb/test/API/functionalities/pointer_num_children/ |
| H A D | TestPointerNumChildren.py | 18 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 D | TestDynamicValueChildCount.py | 70 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 D | TestArrayTypes.py | 170 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 D | TestLibCxxAtomic.py | 52 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 D | TestDataFormatterSynthVal.py | 113 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 D | TestTemplateSpecializationType.py | 18 self.assertEquals(2, v.GetNumChildren()) 26 self.assertEquals(2, v.GetNumChildren())
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBValue.i | 322 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 D | TestRdar12408181.py | 54 window.GetNumChildren() > 1, 57 window_dynamic.GetNumChildren() > 1,
|
| /llvm-project-15.0.7/lldb/test/API/python_api/value/empty_class/ |
| H A D | TestValueAPIEmptyClass.py | 40 self.assertEqual(e.GetNumChildren(), 0) 52 self.assertEqual(epd.GetNumChildren(), 0)
|
| /llvm-project-15.0.7/lldb/test/API/python_api/formatters/ |
| H A D | TestFormattersSBAPI.py | 181 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 D | TestSyntheticFilterRecompute.py | 72 id_x.GetNumChildren(), 7, 76 id_x.GetNumChildren(), 7,
|
| /llvm-project-15.0.7/lldb/test/API/lang/objc/single-entry-dictionary/ |
| H A D | TestObjCSingleEntryDictionary.py | 65 d1.GetNumChildren(), 1, 72 pair.GetNumChildren(), 2,
|
| /llvm-project-15.0.7/lldb/test/API/python_api/value/ |
| H A D | TestValueAPI.py | 58 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 D | lldbDataFormatters.py | 166 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 D | TestStaticVariables.py | 143 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 D | TestSubstTemplateTypeParam.py | 30 self.assertEqual(result.GetNumChildren(), 1)
|
| /llvm-project-15.0.7/lldb/source/Plugins/Language/CPlusPlus/ |
| H A D | LibCxxQueue.cpp | 32 return m_container_sp ? m_container_sp->GetNumChildren() : 0; in CalculateNumChildren()
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBValue.h | 275 uint32_t GetNumChildren(); 277 uint32_t GetNumChildren(uint32_t max);
|
| /llvm-project-15.0.7/lldb/source/Core/ |
| H A D | ValueObjectMemory.cpp | 131 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 D | ValueObjectRegister.cpp | 120 const size_t num_children = GetNumChildren(); in CreateChildAtIndex() 227 auto children_count = GetCompilerType().GetNumChildren(true, &exe_ctx); in CalculateNumChildren()
|
| H A D | ValueObjectDynamicValue.cpp | 91 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 D | TestUseClosestType.py | 32 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 D | TestDataFormatterLibcxxQueue.py | 25 self.assertEqual(var.GetNumChildren(), 5)
|
| /llvm-project-15.0.7/lldb/test/API/lang/c/unions/ |
| H A D | TestUnionMembers.py | 36 self.assertEqual(val.GetNumChildren(), 2)
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/vector-types/ |
| H A D | TestVectorTypesFormatting.py | 57 v.GetNumChildren(), 4,
|