Lines Matching defs:cmd_str
944 const char *cmd_str, bool include_aliases, StringList &matches,
946 AddNamesMatchingPartialString(m_command_dict, cmd_str, matches,
950 AddNamesMatchingPartialString(m_alias_dict, cmd_str, matches,
1018 CommandInterpreter::GetCommandSP(llvm::StringRef cmd_str, bool include_aliases,
1023 std::string cmd = std::string(cmd_str);
1069 num_cmd_matches = AddNamesMatchingPartialString(m_command_dict, cmd_str,
1081 num_alias_matches = AddNamesMatchingPartialString(m_alias_dict, cmd_str,
1093 num_user_matches = AddNamesMatchingPartialString(m_user_dict, cmd_str,
1108 m_user_mw_dict, cmd_str, *matches, descriptions);
1136 matches->AppendString(cmd_str);
1220 CommandInterpreter::GetCommandSPExact(llvm::StringRef cmd_str,
1223 Args cmd_words(cmd_str);
1225 if (cmd_str.empty())
1229 return GetCommandSP(cmd_str, include_aliases, true);
1262 CommandInterpreter::GetCommandObject(llvm::StringRef cmd_str,
1267 return GetCommandSP(cmd_str, /*include_aliases=*/true, /*exact=*/false,
1274 std::string cmd_str(cmd);
1301 AddNamesMatchingPartialString(GetUserCommands(), cmd_str, *matches_ptr);
1303 cmd_str, *matches_ptr);