Home
last modified time | relevance | path

Searched refs:GetSibling (Results 1 – 17 of 17) sorted by relevance

/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBBlock.i67 %feature("docstring", "Get the sibling block for this block.") GetSibling;
69 GetSibling ();
152 …sibling = property(GetSibling, None, doc='''A read only property that returns the same result as G…
/llvm-project-15.0.7/lldb/unittests/SymbolFile/DWARF/
H A DDWARFDIETest.cpp88 const DWARFDebugInfoEntry *die_child1 = die_child0->GetSibling(); in TEST()
94 const DWARFDebugInfoEntry *die_child2 = die_child1->GetSibling(); in TEST()
H A DDWARFASTParserClangTests.cpp102 const DWARFDebugInfoEntry *die_child1 = die_child0->GetSibling(); in TEST_F()
103 const DWARFDebugInfoEntry *die_child2 = die_child1->GetSibling(); in TEST_F()
104 const DWARFDebugInfoEntry *die_child3 = die_child2->GetSibling(); in TEST_F()
H A DDWARFUnitTest.cpp85 EXPECT_EQ(die_first->GetSibling(), nullptr); in TEST()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDIE.h54 GetSibling() const;
127 m_die = m_die.GetSibling();
H A DDWARFDebugInfoEntry.h134 DWARFDebugInfoEntry *GetSibling() { in GetSibling() function
137 const DWARFDebugInfoEntry *GetSibling() const { in GetSibling() function
H A DDWARFDIE.cpp107 DWARFDIE::GetSibling() const { in GetSibling() function in DWARFDIE
109 return DWARFDIE(m_cu, m_die->GetSibling()); in GetSibling()
H A DSymbolFileDWARF.cpp1337 die = die.GetSibling(); in ParseBlocksRecursive()
3036 die = die.GetSibling(); in ParseTypes()
3618 for (; abstract_child; abstract_child = abstract_child.GetSibling()) { in MergeBlockAbstractParameters()
3725 child = child.GetSibling()) { in ParseVariablesInFunctionContextRecursive()
3739 child = child.GetSibling()) { in ParseVariablesInFunctionContextRecursive()
H A DDWARFDebugInfoEntry.cpp710 child = child->GetSibling(); in BuildFunctionAddressRangeTable()
H A DDWARFASTParserClang.cpp3457 src_die = src_die.GetSibling()) { in CopyUniqueClassMethodTypes()
3461 dst_die = dst_die.GetSibling()) { in CopyUniqueClassMethodTypes()
/llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/
H A Dsb_block.py15 obj.GetSibling()
/llvm-project-15.0.7/lldb/source/Host/common/
H A DXML.cpp110 XMLNode XMLNode::GetSibling() const { in GetSibling() function in XMLNode
420 value_node = key_node.GetSibling(); in GetValueNode()
422 value_node = value_node.GetSibling(); in GetValueNode()
/llvm-project-15.0.7/lldb/source/API/
H A DSBBlock.cpp141 SBBlock SBBlock::GetSibling() { in GetSibling() function in SBBlock
146 sb_block.m_opaque_ptr = m_opaque_ptr->GetSibling(); in GetSibling()
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBBlock.h45 lldb::SBBlock GetSibling();
/llvm-project-15.0.7/lldb/include/lldb/Host/
H A DXML.h75 XMLNode GetSibling() const;
/llvm-project-15.0.7/lldb/include/lldb/Symbol/
H A DBlock.h195 Block *GetSibling() const;
/llvm-project-15.0.7/lldb/source/Symbol/
H A DBlock.cpp505 Block *Block::GetSibling() const { in GetSibling() function in Block