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

12

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObjectCast.h41 ValueObject *GetParent() override {
42 return ((m_parent != nullptr) ? m_parent->GetParent() : nullptr);
45 const ValueObject *GetParent() const override {
46 return ((m_parent != nullptr) ? m_parent->GetParent() : nullptr);
H A DValueObjectDynamicValue.h62 ValueObject *GetParent() override {
63 return ((m_parent != nullptr) ? m_parent->GetParent() : nullptr);
66 const ValueObject *GetParent() const override {
67 return ((m_parent != nullptr) ? m_parent->GetParent() : nullptr);
H A DValueObjectSyntheticFilter.h84 ValueObject *GetParent() override {
85 return ((m_parent != nullptr) ? m_parent->GetParent() : nullptr);
88 const ValueObject *GetParent() const override {
89 return ((m_parent != nullptr) ? m_parent->GetParent() : nullptr);
H A DSection.h177 lldb::SectionSP GetParent() const { return m_parent_wp.lock(); } function in class:lldb_private::Section
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DUniqueDWARFASTType.cpp27 DWARFDIE parent_arg_die = die.GetParent();
28 DWARFDIE parent_pos_die = udt.m_die.GetParent();
62 parent_arg_die = parent_arg_die.GetParent();
63 parent_pos_die = parent_pos_die.GetParent();
H A DDWARFDIE.h46 GetParent() const;
H A DDWARFDebugInfoEntry.h141 DWARFDebugInfoEntry *GetParent() { function in class:DWARFDebugInfoEntry
144 const DWARFDebugInfoEntry *GetParent() const { function in class:DWARFDebugInfoEntry
H A DDWARFDIE.cpp90 DWARFDIE::GetParent() const { function in class:DWARFDIE
92 return DWARFDIE(m_cu, m_die->GetParent());
350 DWARFDIE parent = GetParent();
404 if (d.GetParent().IsStructUnionOrClass())
H A DManualDWARFIndex.cpp194 const DWARFDebugInfoEntry *parent_die = die.GetParent();
231 parent_die->GetParent(); // Keep going in the while loop.
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBBlock.i59 %feature("docstring", "Get the parent block.") GetParent;
61 GetParent ();
149 parent = property(GetParent, None, doc='''A read only property that returns the same result as GetParent().''')
H A DSBSection.i58 GetParent();
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBBlock.h43 lldb::SBBlock GetParent();
H A DSBSection.h33 lldb::SBSection GetParent();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxOptional.cpp62 ->GetParent()
H A DLibCxxList.cpp390 lldb::addr_t addr = current_sp->GetParent()->GetPointerValue();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DBlock.cpp61 Block *parent = GetParent();
71 const Block *parent_block = GetParent();
179 for (block_parent = block->GetParent(); block_parent != nullptr;
180 block_parent = block_parent->GetParent()) {
191 Block *Block::GetParent() const { function in class:Block
204 Block *parent_block = GetParent();
325 Block *parent_block = GetParent();
454 Block *parent_block = GetParent();
496 Block *parent_block = GetParent();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DNSError.cpp35 if (valobj.IsBaseClass() && valobj.GetParent())
36 return valobj.GetParent()->GetValueAsUnsigned(LLDB_INVALID_ADDRESS);
H A DNSException.cpp43 if (valobj.IsBaseClass() && valobj.GetParent())
44 ptr = valobj.GetParent()->GetValueAsUnsigned(LLDB_INVALID_ADDRESS);
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBBlock.cpp133 SBBlock SBBlock::GetParent() { function in class:SBBlock
134 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBBlock, SBBlock, GetParent);
138 sb_block.m_opaque_ptr = m_opaque_ptr->GetParent();
372 LLDB_REGISTER_METHOD(lldb::SBBlock, SBBlock, GetParent, ());
H A DSBSection.cpp69 lldb::SBSection SBSection::GetParent() { function in class:SBSection
70 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBSection, SBSection, GetParent);
75 SectionSP parent_section_sp(section_sp->GetParent());
304 LLDB_REGISTER_METHOD(lldb::SBSection, SBSection, GetParent, ());
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DSection.cpp203 SectionSP parent_sp(GetParent());
215 SectionSP parent_sp(GetParent());
229 SectionSP parent_sp(GetParent());
239 SectionSP parent_sp(GetParent());
324 SectionSP parent_sp(GetParent());
348 SectionSP parent_sp(GetParent());
H A DValueObject.cpp2019 GetParent() && GetParent()->GetBaseClassPath(s);
2034 if (GetParent()) {
2035 if (GetParent()->IsBaseClass())
2036 return GetParent()->GetNonBaseClassParent();
2038 return GetParent();
2048 if (GetParent()) {
2049 GetParent()->IsBaseClass(depth);
2104 ValueObject *parent = GetParent();
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/
H A DXML.h73 XMLNode GetParent() const;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DBlock.h156 Block *GetParent() const;
H A DSymtab.h62 const Symbol *GetParent(Symbol *symbol) const;

Completed in 501 milliseconds

12