Lines Matching refs:m_subcommand_dict
32 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()
114 auto pos = m_subcommand_dict.find(str_name); in LoadUserSubcommand()
115 if (pos == m_subcommand_dict.end()) { in LoadUserSubcommand()
116 m_subcommand_dict[str_name] = cmd_obj_sp; in LoadUserSubcommand()
129 m_subcommand_dict[str_name] = cmd_obj_sp; in LoadUserSubcommand()
138 pos = m_subcommand_dict.find(str_name); in RemoveUserSubcommand()
139 if (pos == m_subcommand_dict.end()) { in RemoveUserSubcommand()
157 m_subcommand_dict.erase(pos); in RemoveUserSubcommand()
177 if (m_subcommand_dict.empty()) { in Execute()
227 uint32_t max_len = FindLongestCommandWord(m_subcommand_dict); in GenerateHelpText()
232 for (pos = m_subcommand_dict.begin(); pos != m_subcommand_dict.end(); ++pos) { in GenerateHelpText()
254 AddNamesMatchingPartialString(m_subcommand_dict, arg0, new_matches, in HandleCompletion()