Lines Matching refs:m_command_dict

498   m_command_dict[NAME] = std::make_shared<CLASS>(*this);
603 m_command_dict[std::string(break_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
659 m_command_dict[std::string(tbreak_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
679 m_command_dict[std::string(attach_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
695 m_command_dict[std::string(down_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
710 m_command_dict[std::string(up_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
724 m_command_dict[std::string(display_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
739 m_command_dict[std::string(undisplay_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
758 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
776 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
801 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
837 m_command_dict[std::string(list_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
856 m_command_dict[std::string(env_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
880 m_command_dict[std::string(jump_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
889 AddNamesMatchingPartialString(m_command_dict, cmd_str, matches, in GetCommandNamesMatchingPartialString()
909 auto pos = m_command_dict.find(cmd); in GetCommandSP()
910 if (pos != m_command_dict.end()) in GetCommandSP()
944 num_cmd_matches = AddNamesMatchingPartialString(m_command_dict, cmd_str, in GetCommandSP()
950 auto pos = m_command_dict.find(cmd); in GetCommandSP()
951 if (pos != m_command_dict.end()) in GetCommandSP()
1012 auto name_iter = m_command_dict.find(name_sstr); in AddCommand()
1013 if (name_iter != m_command_dict.end()) { in AddCommand()
1018 m_command_dict[name_sstr] = cmd_sp; in AddCommand()
1035 if (!m_command_dict[std::string(name)]->IsRemovable()) in AddUserCommand()
1131 return m_command_dict.find(std::string(cmd)) != m_command_dict.end(); in CommandExists()
1202 auto pos = m_command_dict.find(std::string(cmd)); in RemoveCommand()
1203 if (pos != m_command_dict.end()) { in RemoveCommand()
1206 m_command_dict.erase(pos); in RemoveCommand()
1231 size_t max_len = FindLongestCommandWord(m_command_dict); in GetHelp()
1237 for (pos = m_command_dict.begin(); pos != m_command_dict.end(); ++pos) { in GetHelp()
1928 bool CommandInterpreter::HasCommands() const { return (!m_command_dict.empty()); } in HasCommands()
2714 m_command_dict); in FindCommandsForApropos()