Searched refs:GetParent (Results 1 - 25 of 33) sorted by relevance

12

/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DValueObjectCast.h47 GetParent() override
49 return ((m_parent != nullptr) ? m_parent->GetParent() : nullptr);
53 GetParent() const override
55 return ((m_parent != nullptr) ? m_parent->GetParent() : nullptr);
H A DValueObjectDynamicValue.h73 GetParent() override
75 return ((m_parent != nullptr) ? m_parent->GetParent() : nullptr);
79 GetParent() const override
81 return ((m_parent != nullptr) ? m_parent->GetParent() : nullptr);
H A DValueObjectSyntheticFilter.h108 GetParent() override
110 return ((m_parent != nullptr) ? m_parent->GetParent() : nullptr);
114 GetParent() const override
116 return ((m_parent != nullptr) ? m_parent->GetParent() : nullptr);
H A DSection.h260 GetParent () const function in class:lldb_private::Section
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DUniqueDWARFASTType.cpp37 DWARFDIE parent_arg_die = die.GetParent();
38 DWARFDIE parent_pos_die = udt.m_die.GetParent();
73 parent_arg_die = parent_arg_die.GetParent();
74 parent_pos_die = parent_pos_die.GetParent();
H A DDWARFDIE.cpp58 DWARFDIE::GetParent () const function in class:DWARFDIE
61 return DWARFDIE(m_cu, m_die->GetParent());
319 DWARFDIE parent = GetParent();
429 for (DWARFDIE parent = GetParent(); parent.IsValid(); parent = parent.GetParent())
H A DDWARFDebugInfoEntry.h299 DWARFDebugInfoEntry* GetParent() { return m_parent_idx > 0 ? this - m_parent_idx : NULL; } function in class:DWARFDebugInfoEntry
300 const DWARFDebugInfoEntry* GetParent() const { return m_parent_idx > 0 ? this - m_parent_idx : NULL; } function in class:DWARFDebugInfoEntry
350 sibling->SetParent(GetParent());
H A DDWARFDebugPubnames.cpp142 DWARFDIE parent_die = die.GetParent();
164 parent_die = parent_die.GetParent(); // Keep going in the while loop.
H A DDWARFDIE.h192 GetParent () const;
H A DDWARFCompileUnit.cpp867 const DWARFDebugInfoEntry* parent_die = die.GetParent();
904 parent_die = parent_die->GetParent(); // Keep going in the while loop.
945 const DWARFDebugInfoEntry *parent = die.GetParent();
959 if (specification_die.GetParent().IsStructOrClass())
H A DDWARFDebugInfoEntry.cpp375 const DWARFDebugInfoEntry* parent = GetParent();
1692 die = die.GetParent();
2019 const DWARFDebugInfoEntry* p = die_ref.GetParent();
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/
H A DNSError.cpp50 if (valobj.IsBaseClass() && valobj.GetParent())
51 ptr_value = valobj.GetParent()->GetValueAsUnsigned(LLDB_INVALID_ADDRESS);
144 if (m_backend.IsBaseClass() && m_backend.GetParent())
145 userinfo_location = m_backend.GetParent()->GetValueAsUnsigned(LLDB_INVALID_ADDRESS);
H A DNSException.cpp50 if (valobj.IsBaseClass() && valobj.GetParent())
51 ptr_value = valobj.GetParent()->GetValueAsUnsigned(LLDB_INVALID_ADDRESS);
143 if (m_backend.IsBaseClass() && m_backend.GetParent())
144 userinfo_location = m_backend.GetParent()->GetValueAsUnsigned(LLDB_INVALID_ADDRESS);
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBBlock.h52 GetParent ();
H A DSBSection.h38 GetParent();
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Symbol/
H A DBlock.cpp75 Block *parent = GetParent();
87 const Block* parent_block = GetParent();
226 for (block_parent = block->GetParent();
228 block_parent = block_parent->GetParent())
243 Block::GetParent () const function in class:Block
261 Block *parent_block = GetParent ();
393 Block *parent_block = GetParent ();
542 Block* parent_block = GetParent();
600 Block *parent_block = GetParent();
H A DSymbolContext.cpp309 Block *parent_block = block->GetParent();
314 parent_block = parent_block->GetParent();
582 Block *next_frame_block = curr_inlined_block->GetParent();
721 curr_block = curr_block->GetParent();
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Core/
H A DSection.cpp101 SectionSP parent_sp (GetParent ());
116 SectionSP parent_sp (GetParent ());
135 SectionSP parent_sp (GetParent ());
147 SectionSP parent_sp (GetParent ());
270 SectionSP parent_sp (GetParent ());
298 SectionSP parent_sp (GetParent ());
H A DIOHandler.cpp1516 Window *parent_window = GetParent();
1646 GetParent () const function in class:curses::Window
2227 window.GetParent()->RemoveSubWindow(m_menu_window_sp.get());
2229 m_menu_window_sp = window.GetParent()->CreateSubWindow (run_menu_sp->GetName().c_str(),
2278 window.GetParent()->RemoveSubWindow(&window);
2284 window.GetParent()->RemoveSubWindow(&window);
2295 window.GetParent()->RemoveSubWindow(&window);
2767 GetParent () function in class:TreeItem
3138 else if (m_selected_item->GetParent())
3140 m_selected_row_idx = m_selected_item->GetParent()
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Host/
H A DXML.h86 GetParent() const;
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DBlock.h222 GetParent () const;
H A DSymtab.h68 const Symbol * GetParent (Symbol *symbol) const;
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/API/
H A DSBBlock.cpp139 SBBlock::GetParent () function in class:SBBlock
143 sb_block.m_opaque_ptr = m_opaque_ptr->GetParent();
H A DSBSection.cpp73 SBSection::GetParent() function in class:SBSection
79 SectionSP parent_section_sp (section_sp->GetParent());
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectFrame.cpp505 options.SetRootValueObjectName(valobj_sp->GetParent() ? name_cstr : NULL);

Completed in 288 milliseconds

12