Lines Matching refs:m_command_dict

510   m_command_dict[NAME] = std::make_shared<CLASS>(*this);
615 m_command_dict[std::string(break_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
671 m_command_dict[std::string(tbreak_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
691 m_command_dict[std::string(attach_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
707 m_command_dict[std::string(down_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
722 m_command_dict[std::string(up_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
736 m_command_dict[std::string(display_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
751 m_command_dict[std::string(undisplay_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
772 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
791 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
816 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
852 m_command_dict[std::string(list_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
871 m_command_dict[std::string(env_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
895 m_command_dict[std::string(jump_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
904 AddNamesMatchingPartialString(m_command_dict, cmd_str, matches, in GetCommandNamesMatchingPartialString()
981 auto pos = m_command_dict.find(cmd); in GetCommandSP()
982 if (pos != m_command_dict.end()) in GetCommandSP()
1024 num_cmd_matches = AddNamesMatchingPartialString(m_command_dict, cmd_str, in GetCommandSP()
1030 auto pos = m_command_dict.find(cmd); in GetCommandSP()
1031 if (pos != m_command_dict.end()) in GetCommandSP()
1112 auto name_iter = m_command_dict.find(name_sstr); in AddCommand()
1113 if (name_iter != m_command_dict.end()) { in AddCommand()
1118 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()
1362 m_command_dict.erase(pos); in RemoveCommand()
1398 size_t max_len = FindLongestCommandWord(m_command_dict); in GetHelp()
1404 for (pos = m_command_dict.begin(); pos != m_command_dict.end(); ++pos) { in GetHelp()
2112 bool CommandInterpreter::HasCommands() const { return (!m_command_dict.empty()); } in HasCommands()
2917 m_command_dict); in FindCommandsForApropos()