Lines Matching refs:sub_cmd
29 CommandObjectSP CommandObjectMultiword::GetSubcommandSP(llvm::StringRef sub_cmd, in GetSubcommandSP() argument
35 pos = m_subcommand_dict.find(std::string(sub_cmd)); in GetSubcommandSP()
39 matches->AppendString(sub_cmd); in GetSubcommandSP()
46 AddNamesMatchingPartialString(m_subcommand_dict, sub_cmd, *matches); in GetSubcommandSP()
52 sub_cmd = matches->GetStringAtIndex(0); in GetSubcommandSP()
53 pos = m_subcommand_dict.find(std::string(sub_cmd)); in GetSubcommandSP()
63 CommandObjectMultiword::GetSubcommandObject(llvm::StringRef sub_cmd, in GetSubcommandObject() argument
65 return GetSubcommandSP(sub_cmd, matches).get(); in GetSubcommandObject()
323 CommandObjectProxy::GetSubcommandSP(llvm::StringRef sub_cmd, in GetSubcommandSP() argument
327 return proxy_command->GetSubcommandSP(sub_cmd, matches); in GetSubcommandSP()
331 CommandObject *CommandObjectProxy::GetSubcommandObject(llvm::StringRef sub_cmd, in GetSubcommandObject() argument
335 return proxy_command->GetSubcommandObject(sub_cmd, matches); in GetSubcommandObject()