Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectMultiword.cpp38 if (!m_subcommand_dict.empty()) { in GetSubcommandSP()
39 pos = m_subcommand_dict.find(sub_cmd); in GetSubcommandSP()
40 if (pos != m_subcommand_dict.end()) { in GetSubcommandSP()
57 pos = m_subcommand_dict.find(sub_cmd); in GetSubcommandSP()
58 if (pos != m_subcommand_dict.end()) in GetSubcommandSP()
81 pos = m_subcommand_dict.find(name); in LoadSubCommand()
82 if (pos == m_subcommand_dict.end()) { in LoadSubCommand()
83 m_subcommand_dict[name] = cmd_obj; in LoadSubCommand()
108 if (m_subcommand_dict.empty()) { in Execute()
166 for (pos = m_subcommand_dict.begin(); pos != m_subcommand_dict.end(); ++pos) { in GenerateHelpText()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DCommandObjectMultiword.h69 return m_subcommand_dict; in GetSubcommandDictionary()
72 CommandObject::CommandMap m_subcommand_dict; variable