Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectMultiword.cpp32 if (m_subcommand_dict.empty()) in GetSubcommandSPExact()
35 auto pos = m_subcommand_dict.find(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(sub_cmd); in GetSubcommandSP()
68 if (pos != m_subcommand_dict.end()) in GetSubcommandSP()
87 return m_subcommand_dict.try_emplace(std::string(name), cmd_obj_sp).second; in LoadSubCommand()
105 auto [pos, inserted] = m_subcommand_dict.try_emplace(str_name, cmd_obj_sp); in LoadUserSubcommand()
127 pos = m_subcommand_dict.find(str_name); in RemoveUserSubcommand()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandObjectMultiword.h70 return m_subcommand_dict; in GetSubcommandDictionary()
75 CommandObject::CommandMap m_subcommand_dict; variable