Lines Matching defs:cmd_str
946 const char *cmd_str, bool include_aliases, StringList &matches,
948 AddNamesMatchingPartialString(m_command_dict, cmd_str, matches,
952 AddNamesMatchingPartialString(m_alias_dict, cmd_str, matches,
1017 CommandInterpreter::GetCommandSP(llvm::StringRef cmd_str, bool include_aliases,
1022 std::string cmd = std::string(cmd_str);
1068 num_cmd_matches = AddNamesMatchingPartialString(m_command_dict, cmd_str,
1080 num_alias_matches = AddNamesMatchingPartialString(m_alias_dict, cmd_str,
1092 num_user_matches = AddNamesMatchingPartialString(m_user_dict, cmd_str,
1107 m_user_mw_dict, cmd_str, *matches, descriptions);
1135 matches->AppendString(cmd_str);
1217 CommandInterpreter::GetCommandSPExact(llvm::StringRef cmd_str,
1220 Args cmd_words(cmd_str);
1222 if (cmd_str.empty())
1226 return GetCommandSP(cmd_str, include_aliases, true);
1259 CommandInterpreter::GetCommandObject(llvm::StringRef cmd_str,
1264 return GetCommandSP(cmd_str, /*include_aliases=*/true, /*exact=*/false,
1271 std::string cmd_str(cmd);
1298 AddNamesMatchingPartialString(GetUserCommands(), cmd_str, *matches_ptr);
1300 cmd_str, *matches_ptr);