Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBValueExtensions.i17 return int(self.sbvalue.GetNumChildren())
45 return lldb_iter(self, 'GetNumChildren', 'GetChildAtIndex')
49 return self.GetNumChildren()
75 num_children = property(GetNumChildren, None, doc='''A read only property that returns the number of child lldb.SBValues that this value has.''')
H A DSBValueDocstrings.i167 ) lldb::SBValue::GetNumChildren;
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValueObjectMemory.cpp131 auto child_count = m_type_sp->GetNumChildren(true); in CalculateNumChildren()
140 m_compiler_type.GetNumChildren(omit_empty_base_classes, &exe_ctx); in CalculateNumChildren()
H A DValueObjectDynamicValue.cpp93 auto children_count = GetCompilerType().GetNumChildren(true, &exe_ctx); in CalculateNumChildren()
98 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 DValueObjectRegister.cpp223 auto children_count = GetCompilerType().GetNumChildren(true, &exe_ctx); in CalculateNumChildren()
H A DValueObjectConstResult.cpp222 auto children_count = GetCompilerType().GetNumChildren(true, &exe_ctx); in CalculateNumChildren()
H A DValueObjectSyntheticFilter.cpp35 return m_backend.GetNumChildren(); in CalculateNumChildren()
H A DValueObjectVariable.cpp107 auto child_count = type.GetNumChildren(omit_empty_base_classes, &exe_ctx); in CalculateNumChildren()
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBValue.h290 uint32_t GetNumChildren();
302 uint32_t GetNumChildren(uint32_t max);
/freebsd/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 DBlockPointer.cpp80 return m_block_struct_type.GetNumChildren(omit_empty_base_classes, nullptr); in CalculateNumChildren()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DStackFrameRecognizer.h170 return m_parent->GetNumChildren(max);
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompilerType.h402 GetNumChildren(bool omit_empty_base_classes,
H A DType.h449 llvm::Expected<uint32_t> GetNumChildren(bool omit_empty_base_classes);
H A DTypeSystem.h321 GetNumChildren(lldb::opaque_compiler_type_t type,
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBValue.cpp973 uint32_t SBValue::GetNumChildren() { in GetNumChildren() function in SBValue
976 return GetNumChildren(UINT32_MAX); in GetNumChildren()
979 uint32_t SBValue::GetNumChildren(uint32_t max) { in GetNumChildren() function in SBValue
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DCompilerType.cpp802 CompilerType::GetNumChildren(bool omit_empty_base_classes, in GetNumChildren() function in CompilerType
806 return type_system_sp->GetNumChildren(m_type, omit_empty_base_classes, in GetNumChildren()
H A DType.cpp496 llvm::Expected<uint32_t> Type::GetNumChildren(bool omit_empty_base_classes) { in GetNumChildren() function in Type
497 return GetForwardCompilerType().GetNumChildren(omit_empty_base_classes, nullptr); in GetNumChildren()
H A DVariable.cpp574 compiler_type.GetNumChildren(omit_empty_base_classes, nullptr)) in PrivateAutoComplete()
/freebsd/contrib/llvm-project/lldb/bindings/python/
H A Dpython-extensions.swig319 self.length = self.sbvalue.GetNumChildren()
512 return self.sbvalue.GetNumChildren()
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DFormatManager.cpp464 auto num_children = valobj.GetNumChildren(max_num_children); in ShouldPrintAsOneLiner()
H A DValueObjectPrinter.cpp654 auto num_children_or_err = synth_valobj.GetNumChildren( in GetMaxNumChildrenToPrint()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObject.h503 llvm::Expected<uint32_t> GetNumChildren(uint32_t max = UINT32_MAX);

12