Home
last modified time | relevance | path

Searched refs:delegate_sp (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DObjectFileJIT.cpp74 if (delegate_sp) { in ObjectFileJIT()
75 m_delegate_wp = delegate_sp; in ObjectFileJIT()
76 m_data.SetByteOrder(delegate_sp->GetByteOrder()); in ObjectFileJIT()
77 m_data.SetAddressByteSize(delegate_sp->GetAddressByteSize()); in ObjectFileJIT()
97 ObjectFileJITDelegateSP delegate_sp(m_delegate_wp.lock()); in ParseSymtab() local
98 if (delegate_sp) in ParseSymtab()
99 delegate_sp->PopulateSymtab(this, symtab); in ParseSymtab()
109 ObjectFileJITDelegateSP delegate_sp(m_delegate_wp.lock()); in CreateSections() local
110 if (delegate_sp) { in CreateSections()
111 delegate_sp->PopulateSectionList(this, *m_sections_up); in CreateSections()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTImporter.cpp46 if (!delegate_sp) in CopyType()
68 ImporterDelegateSP delegate_sp; in CopyDecl() local
75 if (!delegate_sp) in CopyDecl()
563 ImporterDelegateSP delegate_sp( in CompleteTagDecl() local
568 if (delegate_sp) in CompleteTagDecl()
581 ImporterDelegateSP delegate_sp( in CompleteTagDeclWithOrigin() local
584 if (delegate_sp) in CompleteTagDeclWithOrigin()
603 ImporterDelegateSP delegate_sp( in CompleteObjCInterfaceDecl() local
606 if (delegate_sp) in CompleteObjCInterfaceDecl()
629 ImporterDelegateSP delegate_sp( in CompleteAndFetchChildren() local
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Expression/
H A DObjectFileJIT.h36 const lldb::ObjectFileJITDelegateSP &delegate_sp);
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp908 void SetDelegate(const WindowDelegateSP &delegate_sp) { in SetDelegate() argument
909 m_delegate_sp = delegate_sp; in SetDelegate()
2469 FormWindowDelegate(FormDelegateSP &delegate_sp) : m_delegate_sp(delegate_sp) { in FormWindowDelegate() argument
3671 SearcherWindowDelegate(SearcherDelegateSP &delegate_sp) in SearcherWindowDelegate() argument
3672 : m_delegate_sp(delegate_sp), m_text_field("Search", "", false) { in SearcherWindowDelegate()
3888 void SetDelegate(const MenuDelegateSP &delegate_sp) { in SetDelegate() argument
3889 m_delegate_sp = delegate_sp; in SetDelegate()
4853 TreeWindowDelegate(Debugger &debugger, const TreeDelegateSP &delegate_sp) in TreeWindowDelegate() argument
4854 : m_debugger(debugger), m_delegate_sp(delegate_sp), in TreeWindowDelegate()
4855 m_root(nullptr, *delegate_sp, true) {} in TreeWindowDelegate()