Home
last modified time | relevance | path

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

/src/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectMultiword.cpp32 if (m_subcommand_dict.empty()) in GetSubcommandSPExact()
35 auto pos = m_subcommand_dict.find(std::string(sub_cmd)); in GetSubcommandSPExact()
36 if (pos == m_subcommand_dict.end()) in GetSubcommandSPExact()
44 if (m_subcommand_dict.empty()) in GetSubcommandSP()
60 AddNamesMatchingPartialString(m_subcommand_dict, sub_cmd, *matches); in GetSubcommandSP()
67 pos = m_subcommand_dict.find(std::string(sub_cmd)); in GetSubcommandSP()
68 if (pos != m_subcommand_dict.end()) in GetSubcommandSP()
90 pos = m_subcommand_dict.find(std::string(name)); in LoadSubCommand()
91 if (pos == m_subcommand_dict.end()) { in LoadSubCommand()
92 m_subcommand_dict[std::string(name)] = cmd_obj_sp; in LoadSubCommand()
[all …]
/src/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandObjectMultiword.h70 return m_subcommand_dict; in GetSubcommandDictionary()
73 CommandObject::CommandMap m_subcommand_dict; variable