Home
last modified time | relevance | path

Searched refs:m_container (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/lldb/include/lldb/Utility/
H A DIterable.h155 const C &m_container;
158 AdaptedIterable(const C &container) : m_container(container) {} in AdaptedIterable()
161 return AdaptedConstIterator<C, E, A>(m_container.begin()); in begin()
165 return AdaptedConstIterator<C, E, A>(m_container.end()); in end()
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectCommands.cpp1497 if (!m_container) { in IOHandlerInputComplete()
1506 llvm::Error llvm_error = m_container->LoadUserSubcommand( in IOHandlerInputComplete()
1558 m_container = GetCommandInterpreter().VerifyUserMultiwordCmdPath( in DoExecute()
1567 if (!m_container) { in DoExecute()
1610 if (!m_container) { in DoExecute()
1618 m_container->LoadUserSubcommand(m_cmd_name, new_cmd_sp, m_overwrite); in DoExecute()
1628 CommandObjectMultiword *m_container = nullptr; member in CommandObjectCommandsScriptAdd