Home
last modified time | relevance | path

Searched refs:GetNumSubSections (Results 1 – 10 of 10) sorted by relevance

/llvm-project/lldb/test/API/python_api/module_section/
H A DTestModuleAndSection.py40 print(INDENT + "Number of subsections: %d" % sec.GetNumSubSections())
41 if sec.GetNumSubSections() == 0:
/llvm-project/lldb/test/API/python_api/default-constructor/
H A Dsb_section.py12 obj.GetNumSubSections()
/llvm-project/lldb/bindings/interface/
H A DSBSectionExtensions.i17 return self.GetNumSubSections()
/llvm-project/lldb/include/lldb/API/
H A DSBSection.h37 size_t GetNumSubSections();
/llvm-project/lldb/test/API/python_api/section/
H A DTestSectionAPI.py31 for i in range(s.GetNumSubSections()):
/llvm-project/lldb/source/API/
H A DSBSection.cpp93 size_t SBSection::GetNumSubSections() { in GetNumSubSections() function in SBSection
/llvm-project/lldb/examples/python/
H A Dlldbtk.py255 "children": self.section.GetNumSubSections() > 0,
261 num_sections = self.section.GetNumSubSections()
H A Dsymbolication.py699 num_sub_sections = section.GetNumSubSections()
/llvm-project/lldb/test/API/python_api/target/
H A DTestTargetAPI.py224 for i in range(s.GetNumSubSections()):
/llvm-project/lldb/tools/lldb-dap/
H A DJSONUtils.cpp445 size_t num_sub_sections = section.GetNumSubSections(); in CreateModule()