Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectCommands.cpp2173 if (!m_container) { in IOHandlerInputComplete()
2182 llvm::Error llvm_error = m_container->LoadUserSubcommand( in IOHandlerInputComplete()
2234 m_container = GetCommandInterpreter().VerifyUserMultiwordCmdPath( in DoExecute()
2243 if (!m_container) { in DoExecute()
2295 if (!m_container) { in DoExecute()
2303 m_container->LoadUserSubcommand(m_cmd_name, new_cmd_sp, m_overwrite); in DoExecute()
2313 CommandObjectMultiword *m_container = nullptr; member in CommandObjectCommandsScriptAdd