Lines Matching refs:m_subcommand_dict
31 if (m_subcommand_dict.empty()) in GetSubcommandSPExact()
34 auto pos = m_subcommand_dict.find(std::string(sub_cmd)); in GetSubcommandSPExact()
35 if (pos == m_subcommand_dict.end()) in GetSubcommandSPExact()
43 if (m_subcommand_dict.empty()) in GetSubcommandSP()
59 AddNamesMatchingPartialString(m_subcommand_dict, sub_cmd, *matches); in GetSubcommandSP()
66 pos = m_subcommand_dict.find(std::string(sub_cmd)); in GetSubcommandSP()
67 if (pos != m_subcommand_dict.end()) in GetSubcommandSP()
89 pos = m_subcommand_dict.find(std::string(name)); in LoadSubCommand()
90 if (pos == m_subcommand_dict.end()) { in LoadSubCommand()
91 m_subcommand_dict[std::string(name)] = cmd_obj_sp; in LoadSubCommand()
113 auto pos = m_subcommand_dict.find(str_name); in LoadUserSubcommand()
114 if (pos == m_subcommand_dict.end()) { in LoadUserSubcommand()
115 m_subcommand_dict[str_name] = cmd_obj_sp; in LoadUserSubcommand()
128 m_subcommand_dict[str_name] = cmd_obj_sp; in LoadUserSubcommand()
137 pos = m_subcommand_dict.find(str_name); in RemoveUserSubcommand()
138 if (pos == m_subcommand_dict.end()) { in RemoveUserSubcommand()
156 m_subcommand_dict.erase(pos); in RemoveUserSubcommand()
181 if (m_subcommand_dict.empty()) { in Execute()
232 uint32_t max_len = FindLongestCommandWord(m_subcommand_dict); in GenerateHelpText()
237 for (pos = m_subcommand_dict.begin(); pos != m_subcommand_dict.end(); ++pos) { in GenerateHelpText()
259 AddNamesMatchingPartialString(m_subcommand_dict, arg0, new_matches, in HandleCompletion()