| /freebsd/contrib/llvm-project/lldb/include/lldb/ValueObject/ |
| H A D | ValueObjectCast.h | 41 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 D | ValueObjectDynamicValue.h | 62 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 D | ValueObjectSynthetic.h | 90 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 D | UniqueDWARFASTType.cpp | 64 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 D | DWARFDIE.cpp | 94 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 D | DWARFDIE.h | 49 GetParent() const; 127 DWARFDIE getParent() const { return GetParent(); } in getParent()
|
| H A D | DWARFDebugInfoEntry.h | 150 DWARFDebugInfoEntry *GetParent() { in GetParent() function 153 const DWARFDebugInfoEntry *GetParent() const { in GetParent() function
|
| H A D | DWARFASTParserClang.cpp | 100 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 D | ValueObjectVTable.cpp | 43 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 D | Block.cpp | 63 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 D | SymbolContext.cpp | 239 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 D | Section.cpp | 197 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 D | IOHandlerCursesGUI.cpp | 833 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 D | SBBlockDocstrings.i | 25 %feature("docstring", "Get the parent block.") lldb::SBBlock::GetParent;
|
| H A D | SBBlockExtensions.i | 48 …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 D | SBSection.cpp | 65 lldb::SBSection SBSection::GetParent() { in GetParent() function in SBSection 71 SectionSP parent_section_sp(section_sp->GetParent()); in GetParent()
|
| H A D | SBBlock.cpp | 124 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 D | NSException.cpp | 42 if (valobj.IsBaseClass() && valobj.GetParent()) in ExtractFields() 43 ptr = valobj.GetParent()->GetValueAsUnsigned(LLDB_INVALID_ADDRESS); in ExtractFields()
|
| H A D | NSError.cpp | 34 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 D | winerr.c | 38 Child = GetParent (Child); in GetRootParent()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBSection.h | 33 lldb::SBSection GetParent();
|
| H A D | SBBlock.h | 45 lldb::SBBlock GetParent();
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
| H A D | GenericOptional.cpp | 105 ->GetParent() in GetChildAtIndex()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Host/ |
| H A D | XML.h | 73 XMLNode GetParent() const;
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | Block.h | 148 Block *GetParent() const;
|