Lines Matching refs:m_subcommand_dict
34 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()
157 uint32_t max_len = FindLongestCommandWord(m_subcommand_dict); in GenerateHelpText()
162 for (pos = m_subcommand_dict.begin(); pos != m_subcommand_dict.end(); ++pos) { in GenerateHelpText()
184 AddNamesMatchingPartialString(m_subcommand_dict, arg0, new_matches, in HandleCompletion()
236 for (pos = m_subcommand_dict.begin(); pos != m_subcommand_dict.end(); ++pos) { in AproposAllSubCommands()