Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Commands/
DCommandObjectMultiword.cpp34 if (!m_subcommand_dict.empty()) { in GetSubcommandSP()
35 pos = m_subcommand_dict.find(std::string(sub_cmd)); in GetSubcommandSP()
36 if (pos != m_subcommand_dict.end()) { in GetSubcommandSP()
46 AddNamesMatchingPartialString(m_subcommand_dict, sub_cmd, *matches); in GetSubcommandSP()
53 pos = m_subcommand_dict.find(std::string(sub_cmd)); in GetSubcommandSP()
54 if (pos != m_subcommand_dict.end()) in GetSubcommandSP()
77 pos = m_subcommand_dict.find(std::string(name)); in LoadSubCommand()
78 if (pos == m_subcommand_dict.end()) { in LoadSubCommand()
79 m_subcommand_dict[std::string(name)] = cmd_obj; in LoadSubCommand()
106 if (m_subcommand_dict.empty()) { in Execute()
[all …]
/external/llvm-project/lldb/include/lldb/Interpreter/
DCommandObjectMultiword.h66 return m_subcommand_dict; in GetSubcommandDictionary()
69 CommandObject::CommandMap m_subcommand_dict; variable