Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObjectCast.h42 ValueObject *GetParent() override { in GetParent() function
43 return ((m_parent != nullptr) ? m_parent->GetParent() : nullptr); in GetParent()
46 const ValueObject *GetParent() const override { in GetParent() function
47 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 DValueObjectSyntheticFilter.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.cpp41 DWARFDIE parent_arg_die = die.GetParent(); in Find()
42 DWARFDIE parent_pos_die = udt.m_die.GetParent(); in Find()
77 parent_arg_die = parent_arg_die.GetParent(); in Find()
78 parent_pos_die = parent_pos_die.GetParent(); in Find()
H A DDWARFDIE.cpp89 DWARFDIE::GetParent() const { in GetParent() function in DWARFDIE
91 return DWARFDIE(m_cu, m_die->GetParent()); in GetParent()
420 die = die.GetParent(); in GetDeclContextImpl()
492 die = die.GetParent(); in GetTypeLookupContextImpl()
554 die = die.GetParent(); in GetParentDeclContextDIEImpl()
572 if (d.GetParent().IsStructUnionOrClass()) in IsMethod()
H A DDWARFDebugInfoEntry.h136 DWARFDebugInfoEntry *GetParent() { in GetParent() function
139 const DWARFDebugInfoEntry *GetParent() const { in GetParent() function
H A DDWARFDIE.h48 GetParent() const;
H A DDWARFASTParserClang.cpp97 auto Parent = Die.GetParent(); in IsClangModuleFwdDecl()
101 Parent = Parent.GetParent(); in IsClangModuleFwdDecl()
111 for (DWARFDIE parent = die.GetParent(); parent.IsValid(); in GetContainingClangModuleDIE()
112 parent = parent.GetParent()) { in GetContainingClangModuleDIE()
2397 else if ((die.GetParent().Tag() == DW_TAG_compile_unit || in ParseFunctionFromDWARF()
2398 die.GetParent().Tag() == DW_TAG_partial_unit) && in ParseFunctionFromDWARF()
3258 if (auto parent = die.GetParent(); in GetClangDeclForDIE()
3401 for (DWARFDIE parent = die.GetParent(); parent.IsValid(); in GetOwningClangModule()
3402 parent = parent.GetParent()) { in GetOwningClangModule()
3434 for (DWARFDIE candidate = die; candidate; candidate = candidate.GetParent()) { in GetContainingFunctionWithAbstractOrigin()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValueObjectVTable.cpp43 if (ValueObject *parent = GetParent()) in IsInScope()
52 ValueObject *parent = GetParent(); in UpdateValue()
110 ValueObject *val = parent->GetParent(); in UpdateValue()
186 bool ValueObjectVTable::IsInScope() { return GetParent()->IsInScope(); } in IsInScope()
197 ValueObject *parent = GetParent(); in UpdateValue()
H A DSection.cpp194 SectionSP parent_sp(GetParent()); in GetFileAddress()
206 SectionSP parent_sp(GetParent()); in SetFileAddress()
220 SectionSP parent_sp(GetParent()); in GetOffset()
230 SectionSP parent_sp(GetParent()); in GetLoadBaseAddress()
312 SectionSP parent_sp(GetParent()); in DumpName()
336 SectionSP parent_sp(GetParent()); in IsDescendant()
H A DIOHandlerCursesGUI.cpp832 Window *parent_window = GetParent(); in CreateHelpSubwindow()
912 Window *GetParent() const { return m_parent; } in GetParent() function in curses::Window
2825 window.GetParent()->RemoveSubWindow(&window); in WindowDelegateHandleChar()
2889 window.GetParent()->RemoveSubWindow(&window); in Kill()
2898 window.GetParent()->RemoveSubWindow(&window); in Detach()
3057 window.GetParent()->RemoveSubWindow(&window); in Attach()
3237 window.GetParent()->RemoveSubWindow(&window); in CreateTarget()
3614 window.GetParent()->RemoveSubWindow(&window); in Launch()
3772 window.GetParent()->RemoveSubWindow(&window); in ExecuteCallback()
3796 window.GetParent()->RemoveSubWindow(&window); in WindowDelegateHandleChar()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DBlock.cpp62 Block *parent = GetParent(); in Dump()
72 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
215 Block *parent_block = GetParent(); in GetInlinedParent()
352 Block *parent_block = GetParent(); in AddRange()
481 Block *parent_block = GetParent(); in AppendVariables()
523 Block *parent_block = GetParent(); in GetSibling()
H A DSymbolContext.cpp233 Block *parent_block = block->GetParent(); in GetDescription()
237 parent_block = parent_block->GetParent(); in GetDescription()
468 Block *next_frame_block = curr_inlined_block->GetParent(); in GetParentOfInlinedScope()
596 curr_block = curr_block->GetParent(); in SortTypeList()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DNSError.cpp34 if (valobj.IsBaseClass() && valobj.GetParent()) in DerefToNSErrorPointer()
35 return valobj.GetParent()->GetValueAsUnsigned(LLDB_INVALID_ADDRESS); in DerefToNSErrorPointer()
H A DNSException.cpp42 if (valobj.IsBaseClass() && valobj.GetParent()) in ExtractFields()
43 ptr = valobj.GetParent()->GetValueAsUnsigned(LLDB_INVALID_ADDRESS); in ExtractFields()
/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/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.cpp98 ->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.h156 Block *GetParent() const;

12