| /freebsd-13.1/contrib/llvm-project/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); 455 return int(self.sbvalue.GetNumChildren()) 481 return self.GetNumChildren() 507 …num_children = property(GetNumChildren, None, doc='''A read only property that returns the number …
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
| H A D | LibCxxQueue.cpp | 32 return m_container_sp ? m_container_sp->GetNumChildren() : 0; in CalculateNumChildren()
|
| H A D | LibStdcppTuple.cpp | 68 size_t child_count = current_child->GetNumChildren(); in Update()
|
| H A D | BlockPointer.cpp | 89 return m_block_struct_type.GetNumChildren(omit_empty_base_classes, nullptr); in CalculateNumChildren()
|
| H A D | LibCxxMap.cpp | 416 switch (potential_child_sp->GetNumChildren()) { in GetChildAtIndex()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBValue.h | 269 uint32_t GetNumChildren(); 271 uint32_t GetNumChildren(uint32_t max);
|
| /freebsd-13.1/contrib/llvm-project/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 | 119 const size_t num_children = GetNumChildren(); in CreateChildAtIndex() 228 auto children_count = GetCompilerType().GetNumChildren(true, &exe_ctx); in CalculateNumChildren()
|
| H A D | ValueObjectDynamicValue.cpp | 95 auto children_count = GetCompilerType().GetNumChildren(true, &exe_ctx); in CalculateNumChildren() 98 return m_parent->GetNumChildren(max); in CalculateNumChildren()
|
| H A D | ValueObjectCast.cpp | 45 auto children_count = GetCompilerType().GetNumChildren( in CalculateNumChildren()
|
| H A D | ValueObjectChild.cpp | 54 auto children_count = GetCompilerType().GetNumChildren(true, &exe_ctx); in CalculateNumChildren()
|
| H A D | ValueObject.cpp | 380 if (idx < GetNumChildren()) { in GetChildAtIndex() 496 size_t ValueObject::GetNumChildren(uint32_t max) { in GetNumChildren() function in ValueObject 520 has_children = GetNumChildren() > 0; in MightHaveChildren() 1213 const size_t count = GetNumChildren(); in DumpPrintableRepresentation() 1252 const size_t count = GetNumChildren(); in DumpPrintableRepresentation() 1331 strm.Printf("%" PRIu64 "", (uint64_t)GetNumChildren()); in DumpPrintableRepresentation() 2355 root->GetSyntheticValue()->GetNumChildren() > index) in GetValueForExpressionPath_Impl()
|
| H A D | ValueObjectConstResult.cpp | 220 auto children_count = GetCompilerType().GetNumChildren(true, &exe_ctx); in CalculateNumChildren()
|
| H A D | ValueObjectVariable.cpp | 104 auto child_count = type.GetNumChildren(omit_empty_base_classes, &exe_ctx); in CalculateNumChildren()
|
| H A D | ValueObjectSyntheticFilter.cpp | 32 size_t CalculateNumChildren() override { return m_backend.GetNumChildren(); } in CalculateNumChildren()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/API/ |
| H A D | SBValue.cpp | 979 uint32_t SBValue::GetNumChildren() { in GetNumChildren() function in SBValue 980 LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBValue, GetNumChildren); in GetNumChildren() 982 return GetNumChildren(UINT32_MAX); in GetNumChildren() 985 uint32_t SBValue::GetNumChildren(uint32_t max) { in GetNumChildren() function in SBValue 986 LLDB_RECORD_METHOD(uint32_t, SBValue, GetNumChildren, (uint32_t), max); in GetNumChildren() 993 num_children = value_sp->GetNumChildren(max); in GetNumChildren() 1627 LLDB_REGISTER_METHOD(uint32_t, SBValue, GetNumChildren, ()); in RegisterMethods() 1628 LLDB_REGISTER_METHOD(uint32_t, SBValue, GetNumChildren, (uint32_t)); in RegisterMethods()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | StackFrameRecognizer.h | 167 return m_parent->GetNumChildren(max);
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/DataFormatters/ |
| H A D | FormatManager.cpp | 469 if (valobj.GetNumChildren() == 0) in ShouldPrintAsOneLiner() 488 for (size_t idx = 0; idx < valobj.GetNumChildren(); idx++) { in ShouldPrintAsOneLiner() 540 if (child_sp->GetNumChildren()) { in ShouldPrintAsOneLiner()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | CompilerType.cpp | 515 uint32_t CompilerType::GetNumChildren(bool omit_empty_base_classes, in GetNumChildren() function in CompilerType 519 return m_type_system->GetNumChildren(m_type, omit_empty_base_classes, in GetNumChildren()
|
| H A D | Type.cpp | 383 uint32_t Type::GetNumChildren(bool omit_empty_base_classes) { in GetNumChildren() function in Type 384 return GetForwardCompilerType().GetNumChildren(omit_empty_base_classes, nullptr); in GetNumChildren()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | CompilerType.h | 280 uint32_t GetNumChildren(bool omit_empty_base_classes,
|
| H A D | Type.h | 134 uint32_t GetNumChildren(bool omit_empty_base_classes);
|
| H A D | TypeSystem.h | 287 virtual uint32_t GetNumChildren(lldb::opaque_compiler_type_t type,
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Target/ |
| H A D | StackFrame.cpp | 849 ->GetNumChildren() /* synthetic does not have that many values */) { in GetValueForVariableExpressionPath() 921 ->GetNumChildren() /* synthetic does not have that many values */) { in GetValueForVariableExpressionPath() 1378 for (int ci = 0, ce = parent->GetNumChildren(); ci != ce; ++ci) { in GetValueForOffset()
|
| /freebsd-13.1/contrib/llvm-project/lldb/bindings/python/ |
| H A D | python-extensions.swig | 312 self.length = self.sbvalue.GetNumChildren() 505 return self.sbvalue.GetNumChildren()
|