Home
last modified time | relevance | path

Searched refs:GetParent (Results 1 – 25 of 45) sorted by relevance

12

/freebsd/contrib/llvm-project/lldb/include/lldb/ValueObject/
H A DValueObjectCast.h41 ValueObject *GetParent() override { in GetParent() function
42 return ((m_parent != nullptr) ? m_parent->GetParent() : nullptr); in GetParent()
45 const ValueObject *GetParent() const override { in GetParent() function
46 return ((m_parent != nullptr) ? m_parent->GetParent() : nullptr); in GetParent()
H A DValueObjectDynamicValue.h62 ValueObject *GetParent() override { in GetParent() function
63 return ((m_parent != nullptr) ? m_parent->GetParent() : nullptr); in GetParent()
66 const ValueObject *GetParent() const override { in GetParent() function
67 return ((m_parent != nullptr) ? m_parent->GetParent() : nullptr); in GetParent()
H A DValueObjectSynthetic.h90 ValueObject *GetParent() override { in GetParent() function
91 return ((m_parent != nullptr) ? m_parent->GetParent() : nullptr); in GetParent()
94 const ValueObject *GetParent() const override { in GetParent() function
95 return ((m_parent != nullptr) ? m_parent->GetParent() : nullptr); in GetParent()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DUniqueDWARFASTType.cpp64 DWARFDIE parent_arg_die = die.GetParent(); in Find()
65 DWARFDIE parent_pos_die = udt.m_die.GetParent(); in Find()
100 parent_arg_die = parent_arg_die.GetParent(); in Find()
101 parent_pos_die = parent_pos_die.GetParent(); in Find()
H A DDWARFDIE.cpp94 DWARFDIE::GetParent() const { in GetParent() function in DWARFDIE
96 return DWARFDIE(m_cu, m_die->GetParent()); in GetParent()
451 die = die.GetParent(); in GetDeclContextImpl()
498 die = die.GetParent(); in GetTypeLookupContextImpl()
561 die = die.GetParent(); in GetParentDeclContextDIEImpl()
579 if (d.GetParent().IsStructUnionOrClass()) in IsMethod()
H A DDWARFDIE.h49 GetParent() const;
127 DWARFDIE getParent() const { return GetParent(); } in getParent()
H A DDWARFDebugInfoEntry.h150 DWARFDebugInfoEntry *GetParent() { in GetParent() function
153 const DWARFDebugInfoEntry *GetParent() const { in GetParent() function
H A DDWARFASTParserClang.cpp100 auto Parent = Die.GetParent(); in IsClangModuleFwdDecl()
104 Parent = Parent.GetParent(); in IsClangModuleFwdDecl()
114 for (DWARFDIE parent = die.GetParent(); parent.IsValid(); in GetContainingClangModuleDIE()
115 parent = parent.GetParent()) { in GetContainingClangModuleDIE()
2485 else if ((die.GetParent().Tag() == DW_TAG_compile_unit || in ParseFunctionFromDWARF()
2486 die.GetParent().Tag() == DW_TAG_partial_unit) && in ParseFunctionFromDWARF()
3265 if (auto parent = die.GetParent(); in GetClangDeclForDIE()
3408 for (DWARFDIE parent = die.GetParent(); parent.IsValid(); in GetOwningClangModule()
3409 parent = parent.GetParent()) { in GetOwningClangModule()
3441 for (DWARFDIE candidate = die; candidate; candidate = candidate.GetParent()) { in GetContainingFunctionWithAbstractOrigin()
[all …]
/freebsd/contrib/llvm-project/lldb/source/ValueObject/
H A DValueObjectVTable.cpp43 if (ValueObject *parent = GetParent()) in IsInScope()
52 ValueObject *parent = GetParent(); in UpdateValue()
109 ValueObject *val = parent->GetParent(); in UpdateValue()
185 bool ValueObjectVTable::IsInScope() { return GetParent()->IsInScope(); } in IsInScope()
196 ValueObject *parent = GetParent(); in UpdateValue()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DBlock.cpp63 Block *parent = GetParent(); in Dump()
73 const Block *parent_block = GetParent(); in Dump()
190 for (block_parent = block->GetParent(); block_parent != nullptr; in Contains()
191 block_parent = block_parent->GetParent()) { in Contains()
202 Block *Block::GetParent() const { in GetParent() function in Block
213 Block *parent_block = GetParent(); in GetInlinedParent()
332 Block *parent_block = GetParent(); in AddRange()
458 Block *parent_block = GetParent(); in AppendVariables()
499 if (Block *parent_block = GetParent()) in GetSibling()
H A DSymbolContext.cpp239 Block *parent_block = block->GetParent(); in GetDescription()
243 parent_block = parent_block->GetParent(); in GetDescription()
425 Block *next_frame_block = curr_inlined_block->GetParent(); in GetParentOfInlinedScope()
553 curr_block = curr_block->GetParent(); in SortTypeList()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DSection.cpp197 SectionSP parent_sp(GetParent()); in GetFileAddress()
209 SectionSP parent_sp(GetParent()); in SetFileAddress()
223 SectionSP parent_sp(GetParent()); in GetOffset()
233 SectionSP parent_sp(GetParent()); in GetLoadBaseAddress()
315 SectionSP parent_sp(GetParent()); in DumpName()
339 SectionSP parent_sp(GetParent()); in IsDescendant()
H A DIOHandlerCursesGUI.cpp833 Window *parent_window = GetParent(); in CreateHelpSubwindow()
913 Window *GetParent() const { return m_parent; } in GetParent() function in lldb_private::curses::Window
2826 window.GetParent()->RemoveSubWindow(&window); in WindowDelegateHandleChar()
2890 window.GetParent()->RemoveSubWindow(&window); in Kill()
2899 window.GetParent()->RemoveSubWindow(&window); in Detach()
3058 window.GetParent()->RemoveSubWindow(&window); in Attach()
3238 window.GetParent()->RemoveSubWindow(&window); in CreateTarget()
3615 window.GetParent()->RemoveSubWindow(&window); in Launch()
3773 window.GetParent()->RemoveSubWindow(&window); in ExecuteCallback()
3797 window.GetParent()->RemoveSubWindow(&window); in WindowDelegateHandleChar()
[all …]
/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBBlockDocstrings.i25 %feature("docstring", "Get the parent block.") lldb::SBBlock::GetParent;
H A DSBBlockExtensions.i48 …parent = property(GetParent, None, doc='''A read only property that returns the same result as Get…
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBSection.cpp65 lldb::SBSection SBSection::GetParent() { in GetParent() function in SBSection
71 SectionSP parent_section_sp(section_sp->GetParent()); in GetParent()
H A DSBBlock.cpp124 SBBlock SBBlock::GetParent() { in GetParent() function in SBBlock
129 sb_block.m_opaque_ptr = m_opaque_ptr->GetParent(); in GetParent()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DNSException.cpp42 if (valobj.IsBaseClass() && valobj.GetParent()) in ExtractFields()
43 ptr = valobj.GetParent()->GetValueAsUnsigned(LLDB_INVALID_ADDRESS); in ExtractFields()
H A DNSError.cpp34 if (valobj.IsBaseClass() && valobj.GetParent()) in DerefToNSErrorPointer()
35 return valobj.GetParent()->GetValueAsUnsigned(LLDB_INVALID_ADDRESS); in DerefToNSErrorPointer()
/freebsd/crypto/krb5/src/windows/leashdll/
H A Dwinerr.c38 Child = GetParent (Child); in GetRootParent()
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBSection.h33 lldb::SBSection GetParent();
H A DSBBlock.h45 lldb::SBBlock GetParent();
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DGenericOptional.cpp105 ->GetParent() in GetChildAtIndex()
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DXML.h73 XMLNode GetParent() const;
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DBlock.h148 Block *GetParent() const;

12