Lines Matching refs:m_command_dict
536 m_command_dict[NAME] = std::make_shared<CLASS>(*this);
639 m_command_dict[std::string(break_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
692 m_command_dict[std::string(tbreak_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
712 m_command_dict[std::string(attach_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
728 m_command_dict[std::string(down_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
743 m_command_dict[std::string(up_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
757 m_command_dict[std::string(display_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
772 m_command_dict[std::string(undisplay_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
793 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
812 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
837 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
873 m_command_dict[std::string(list_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
892 m_command_dict[std::string(env_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
916 m_command_dict[std::string(jump_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
925 AddNamesMatchingPartialString(m_command_dict, cmd_str, matches, in GetCommandNamesMatchingPartialString()
1002 auto pos = m_command_dict.find(cmd); in GetCommandSP()
1003 if (pos != m_command_dict.end()) in GetCommandSP()
1045 num_cmd_matches = AddNamesMatchingPartialString(m_command_dict, cmd_str, in GetCommandSP()
1051 auto pos = m_command_dict.find(cmd); in GetCommandSP()
1052 if (pos != m_command_dict.end()) in GetCommandSP()
1133 auto name_iter = m_command_dict.find(name_sstr); in AddCommand()
1134 if (name_iter != m_command_dict.end()) { in AddCommand()
1139 m_command_dict[name_sstr] = cmd_sp; in AddCommand()
1283 return m_command_dict.find(std::string(cmd)) != m_command_dict.end(); in CommandExists()
1358 auto pos = m_command_dict.find(std::string(cmd)); in RemoveCommand()
1359 if (pos != m_command_dict.end()) { in RemoveCommand()
1363 m_command_dict.erase(pos); in RemoveCommand()
1399 size_t max_len = FindLongestCommandWord(m_command_dict); in GetHelp()
1405 for (pos = m_command_dict.begin(); pos != m_command_dict.end(); ++pos) { in GetHelp()
2162 bool CommandInterpreter::HasCommands() const { return (!m_command_dict.empty()); } in HasCommands()
2968 m_command_dict); in FindCommandsForApropos()