Home
last modified time | relevance | path

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

12

/freebsd-14.2/contrib/llvm-project/lldb/bindings/interface/
H A DSBValueExtensions.i17 return int(self.sbvalue.GetNumChildren())
49 return self.GetNumChildren()
75 …num_children = property(GetNumChildren, None, doc='''A read only property that returns the number …
H A DSBValueDocstrings.i147 ) lldb::SBValue::GetNumChildren;
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxQueue.cpp32 return m_container_sp ? m_container_sp->GetNumChildren() : 0; in CalculateNumChildren()
H A DLibStdcppTuple.cpp68 size_t child_count = current_child->GetNumChildren(); in Update()
H A DGenericOptional.cpp22 valobj.GetNumChildren() == 0 ? "false" : "true"); in GenericOptionalSummaryProvider()
H A DBlockPointer.cpp79 return m_block_struct_type.GetNumChildren(omit_empty_base_classes, nullptr); in CalculateNumChildren()
H A DCoroutines.cpp25 if (valobj_sp->GetNumChildren() != 1) in GetCoroFramePtrFromHandle()
H A DLibCxxMap.cpp395 switch (potential_child_sp->GetNumChildren()) { in GetChildAtIndex()
/freebsd-14.2/contrib/llvm-project/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.cpp121 const size_t num_children = GetNumChildren(); in CreateChildAtIndex()
225 auto children_count = GetCompilerType().GetNumChildren(true, &exe_ctx); in CalculateNumChildren()
H A DValueObjectDynamicValue.cpp92 auto children_count = GetCompilerType().GetNumChildren(true, &exe_ctx); in CalculateNumChildren()
95 return m_parent->GetNumChildren(max); in CalculateNumChildren()
H A DValueObjectCast.cpp46 auto children_count = GetCompilerType().GetNumChildren( in CalculateNumChildren()
H A DValueObjectChild.cpp54 auto children_count = GetCompilerType().GetNumChildren(true, &exe_ctx); in CalculateNumChildren()
H A DValueObject.cpp380 if (idx < GetNumChildren()) { in GetChildAtIndex()
443 size_t ValueObject::GetNumChildren(uint32_t max) { in GetNumChildren() function in ValueObject
467 has_children = GetNumChildren() > 0; in MightHaveChildren()
1179 const size_t count = GetNumChildren(); in DumpPrintableRepresentation()
1218 const size_t count = GetNumChildren(); in DumpPrintableRepresentation()
1297 strm.Printf("%" PRIu64 "", (uint64_t)GetNumChildren()); in DumpPrintableRepresentation()
2311 root->GetSyntheticValue()->GetNumChildren() > index) in GetValueForExpressionPath_Impl()
H A DValueObjectConstResult.cpp221 auto children_count = GetCompilerType().GetNumChildren(true, &exe_ctx); in CalculateNumChildren()
H A DValueObjectVariable.cpp105 auto child_count = type.GetNumChildren(omit_empty_base_classes, &exe_ctx); in CalculateNumChildren()
H A DValueObjectSyntheticFilter.cpp34 size_t CalculateNumChildren() override { return m_backend.GetNumChildren(); } in CalculateNumChildren()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/API/
H A DSBValue.h282 uint32_t GetNumChildren();
284 uint32_t GetNumChildren(uint32_t max);
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/
H A DStackFrameRecognizer.h168 return m_parent->GetNumChildren(max);
/freebsd-14.2/contrib/llvm-project/lldb/source/DataFormatters/
H A DFormatManager.cpp458 if (valobj.GetNumChildren() == 0) in ShouldPrintAsOneLiner()
477 for (size_t idx = 0; idx < valobj.GetNumChildren(); idx++) { in ShouldPrintAsOneLiner()
529 if (child_sp->GetNumChildren()) { in ShouldPrintAsOneLiner()
/freebsd-14.2/contrib/llvm-project/lldb/source/API/
H A DSBValue.cpp936 uint32_t SBValue::GetNumChildren() { in GetNumChildren() function in SBValue
939 return GetNumChildren(UINT32_MAX); in GetNumChildren()
942 uint32_t SBValue::GetNumChildren(uint32_t max) { in GetNumChildren() function in SBValue
950 num_children = value_sp->GetNumChildren(max); in GetNumChildren()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompilerType.h389 uint32_t GetNumChildren(bool omit_empty_base_classes,
/freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/
H A DCompilerType.cpp773 uint32_t CompilerType::GetNumChildren(bool omit_empty_base_classes, in GetNumChildren() function in CompilerType
777 return type_system_sp->GetNumChildren(m_type, omit_empty_base_classes, in GetNumChildren()
H A DType.cpp491 uint32_t Type::GetNumChildren(bool omit_empty_base_classes) { in GetNumChildren() function in Type
492 return GetForwardCompilerType().GetNumChildren(omit_empty_base_classes, nullptr); in GetNumChildren()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionSourceCode.cpp232 uint32_t numChildren = thisValSP->GetNumChildren(); in AddLambdaCaptureDecls()

12