Lines Matching refs:cmd_str
920 const char *cmd_str, bool include_aliases, StringList &matches, in GetCommandNamesMatchingPartialString() argument
922 AddNamesMatchingPartialString(m_command_dict, cmd_str, matches, in GetCommandNamesMatchingPartialString()
926 AddNamesMatchingPartialString(m_alias_dict, cmd_str, matches, in GetCommandNamesMatchingPartialString()
991 CommandInterpreter::GetCommandSP(llvm::StringRef cmd_str, bool include_aliases, in GetCommandSP() argument
996 std::string cmd = std::string(cmd_str); in GetCommandSP()
1042 num_cmd_matches = AddNamesMatchingPartialString(m_command_dict, cmd_str, in GetCommandSP()
1054 num_alias_matches = AddNamesMatchingPartialString(m_alias_dict, cmd_str, in GetCommandSP()
1066 num_user_matches = AddNamesMatchingPartialString(m_user_dict, cmd_str, in GetCommandSP()
1081 m_user_mw_dict, cmd_str, *matches, descriptions); in GetCommandSP()
1109 matches->AppendString(cmd_str); in GetCommandSP()
1187 CommandInterpreter::GetCommandSPExact(llvm::StringRef cmd_str, in GetCommandSPExact() argument
1190 Args cmd_words(cmd_str); in GetCommandSPExact()
1192 if (cmd_str.empty()) in GetCommandSPExact()
1196 return GetCommandSP(cmd_str, include_aliases, true); in GetCommandSPExact()
1229 CommandInterpreter::GetCommandObject(llvm::StringRef cmd_str, in GetCommandObject() argument
1233 GetCommandSP(cmd_str, false, true, matches, descriptions).get(); in GetCommandObject()
1241 command_obj = GetCommandSP(cmd_str, true, true, matches, descriptions).get(); in GetCommandObject()
1248 command_obj = GetCommandSP(cmd_str, false, false, nullptr).get(); in GetCommandObject()
1261 return GetCommandSP(cmd_str, true, false, matches, descriptions).get(); in GetCommandObject()
1266 std::string cmd_str(cmd); in GetUserCommandObject() local
1293 AddNamesMatchingPartialString(GetUserCommands(), cmd_str, *matches_ptr); in GetUserCommandObject()
1295 cmd_str, *matches_ptr); in GetUserCommandObject()