Lines Matching refs:cmd_str
844 const char *cmd_str, bool include_aliases, StringList &matches, in GetCommandNamesMatchingPartialString() argument
846 AddNamesMatchingPartialString(m_command_dict, cmd_str, matches, in GetCommandNamesMatchingPartialString()
850 AddNamesMatchingPartialString(m_alias_dict, cmd_str, matches, in GetCommandNamesMatchingPartialString()
858 CommandInterpreter::GetCommandSP(llvm::StringRef cmd_str, bool include_aliases, in GetCommandSP() argument
863 std::string cmd = cmd_str; in GetCommandSP()
901 num_cmd_matches = AddNamesMatchingPartialString(m_command_dict, cmd_str, in GetCommandSP()
913 num_alias_matches = AddNamesMatchingPartialString(m_alias_dict, cmd_str, in GetCommandSP()
925 num_user_matches = AddNamesMatchingPartialString(m_user_dict, cmd_str, in GetCommandSP()
950 matches->AppendString(cmd_str); in GetCommandSP()
1009 CommandObjectSP CommandInterpreter::GetCommandSPExact(llvm::StringRef cmd_str, in GetCommandSPExact() argument
1011 Args cmd_words(cmd_str); // Break up the command string into words, in case in GetCommandSPExact()
1015 if (cmd_str.empty()) in GetCommandSPExact()
1019 return GetCommandSP(cmd_str, include_aliases, true, nullptr); in GetCommandSPExact()
1053 CommandInterpreter::GetCommandObject(llvm::StringRef cmd_str, in GetCommandObject() argument
1057 GetCommandSP(cmd_str, false, true, matches, descriptions).get(); in GetCommandObject()
1065 command_obj = GetCommandSP(cmd_str, true, true, matches, descriptions).get(); in GetCommandObject()
1072 command_obj = GetCommandSP(cmd_str, false, false, nullptr).get(); in GetCommandObject()
1085 return GetCommandSP(cmd_str, true, false, matches, descriptions).get(); in GetCommandObject()