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.cpp72 const ObjectFileJITDelegateSP &delegate_sp) in GetModuleSpecifications()
74 if (delegate_sp) {
75 m_delegate_wp = delegate_sp; in ObjectFileJIT()
76 m_data.SetByteOrder(delegate_sp->GetByteOrder()); in ObjectFileJIT() argument
77 m_data.SetAddressByteSize(delegate_sp->GetAddressByteSize()); in ObjectFileJIT()
97 ObjectFileJITDelegateSP delegate_sp(m_delegate_wp.lock()); in GetAddressByteSize()
98 if (delegate_sp) in GetAddressByteSize()
99 delegate_sp->PopulateSymtab(this, symtab);
109 ObjectFileJITDelegateSP delegate_sp(m_delegate_wp.lock());
110 if (delegate_sp) { in CreateSections()
101 ObjectFileJITDelegateSP delegate_sp(m_delegate_wp.lock()); ParseSymtab() local
113 ObjectFileJITDelegateSP delegate_sp(m_delegate_wp.lock()); CreateSections() local
167 if (ObjectFileJITDelegateSP delegate_sp = m_delegate_wp.lock()) GetArchitecture() local
[all...]
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTImporter.cpp48 ImporterDelegateSP delegate_sp(GetDelegate(&dst_clang_ast, &src_clang_ast)); in CopyType() local
49 if (!delegate_sp) in CopyType()
52 ASTImporterDelegate::CxxModuleScope std_scope(*delegate_sp, &dst_clang_ast); in CopyType()
54 llvm::Expected<QualType> ret_or_error = delegate_sp->Import(src_qual_type); in CopyType()
71 ImporterDelegateSP delegate_sp; in CopyDecl() local
74 delegate_sp = GetDelegate(dst_ast, src_ast); in CopyDecl()
76 ASTImporterDelegate::CxxModuleScope std_scope(*delegate_sp, dst_ast); in CopyDecl()
78 if (!delegate_sp) in CopyDecl()
81 llvm::Expected<clang::Decl *> result = delegate_sp->Import(decl); in CopyDecl()
805 ImporterDelegateSP delegate_sp( in CompleteTagDecl() 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()