Home
last modified time | relevance | path

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

12

/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
HDSBValue.i322 GetNumChildren ();
332 An integer value capped to the argument max.") GetNumChildren;
334 GetNumChildren (uint32_t max);
459 return int(self.sbvalue.GetNumChildren())
485 return self.GetNumChildren()
511 …num_children = property(GetNumChildren, None, doc='''A read only property that returns the number …
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
HDValueObjectRegister.cpp93 const size_t num_children = GetNumChildren(); in CreateChildAtIndex()
181 const size_t num_children = GetNumChildren(); in CreateChildAtIndex()
287 auto children_count = GetCompilerType().GetNumChildren(true, &exe_ctx); in CalculateNumChildren()
HDValueObjectMemory.cpp126 auto child_count = m_type_sp->GetNumChildren(true); in CalculateNumChildren()
133 m_compiler_type.GetNumChildren(omit_empty_base_classes, &exe_ctx); in CalculateNumChildren()
HDValueObjectDynamicValue.cpp95 auto children_count = GetCompilerType().GetNumChildren(true, &exe_ctx); in CalculateNumChildren()
98 return m_parent->GetNumChildren(max); in CalculateNumChildren()
HDValueObjectCast.cpp47 auto children_count = GetCompilerType().GetNumChildren( in CalculateNumChildren()
HDValueObjectChild.cpp54 auto children_count = GetCompilerType().GetNumChildren(true, &exe_ctx); in CalculateNumChildren()
HDValueObject.cpp489 if (idx < GetNumChildren()) { in GetChildAtIndex()
614 size_t ValueObject::GetNumChildren(uint32_t max) { in GetNumChildren() function in ValueObject
638 has_children = GetNumChildren() > 0; in MightHaveChildren()
1319 const size_t count = GetNumChildren(); in DumpPrintableRepresentation()
1358 const size_t count = GetNumChildren(); in DumpPrintableRepresentation()
1437 strm.Printf("%" PRIu64 "", (uint64_t)GetNumChildren()); in DumpPrintableRepresentation()
2528 root->GetSyntheticValue()->GetNumChildren() > index) in GetValueForExpressionPath_Impl()
HDValueObjectVariable.cpp102 auto child_count = type.GetNumChildren(omit_empty_base_classes, &exe_ctx); in CalculateNumChildren()
HDValueObjectConstResult.cpp212 auto children_count = GetCompilerType().GetNumChildren(true, &exe_ctx); in CalculateNumChildren()
HDValueObjectSyntheticFilter.cpp33 size_t CalculateNumChildren() override { return m_backend.GetNumChildren(); } in CalculateNumChildren()
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
HDSBValue.h269 uint32_t GetNumChildren();
271 uint32_t GetNumChildren(uint32_t max);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
HDLibCxxQueue.cpp32 return m_container_sp ? m_container_sp->GetNumChildren() : 0; in CalculateNumChildren()
HDLibStdcppTuple.cpp68 size_t child_count = current_child->GetNumChildren(); in Update()
HDLibCxxAtomic.cpp131 return m_real_child ? m_real_child->GetNumChildren() : 0; in CalculateNumChildren()
HDBlockPointer.cpp89 return m_block_struct_type.GetNumChildren(omit_empty_base_classes, nullptr); in CalculateNumChildren()
HDLibCxxMap.cpp417 switch (potential_child_sp->GetNumChildren()) { in GetChildAtIndex()
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
HDSBValue.cpp979 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-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
HDStackFrameRecognizer.h148 return m_parent->GetNumChildren(max);
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/
HDFormatManager.cpp478 if (valobj.GetNumChildren() == 0) in ShouldPrintAsOneLiner()
497 for (size_t idx = 0; idx < valobj.GetNumChildren(); idx++) { in ShouldPrintAsOneLiner()
549 if (child_sp->GetNumChildren()) { in ShouldPrintAsOneLiner()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
HDCompilerType.cpp511 uint32_t CompilerType::GetNumChildren(bool omit_empty_base_classes, in GetNumChildren() function in CompilerType
515 return m_type_system->GetNumChildren(m_type, omit_empty_base_classes, in GetNumChildren()
HDType.cpp383 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-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
HDCompilerType.h265 uint32_t GetNumChildren(bool omit_empty_base_classes,
HDType.h125 uint32_t GetNumChildren(bool omit_empty_base_classes);
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/python/
HDpython-extensions.swig311 self.length = self.sbvalue.GetNumChildren()
504 return self.sbvalue.GetNumChildren()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
HDStackFrame.cpp848 ->GetNumChildren() /* synthetic does not have that many values */) { in GetValueForVariableExpressionPath()
920 ->GetNumChildren() /* synthetic does not have that many values */) { in GetValueForVariableExpressionPath()
1408 for (int ci = 0, ce = parent->GetNumChildren(); ci != ce; ++ci) { in GetValueForOffset()

12