Lines Matching refs:sub_cmd
33 CommandObjectSP CommandObjectMultiword::GetSubcommandSP(llvm::StringRef sub_cmd, in GetSubcommandSP() argument
39 pos = m_subcommand_dict.find(sub_cmd); in GetSubcommandSP()
43 matches->AppendString(sub_cmd); in GetSubcommandSP()
50 AddNamesMatchingPartialString(m_subcommand_dict, sub_cmd, *matches); in GetSubcommandSP()
56 sub_cmd = matches->GetStringAtIndex(0); in GetSubcommandSP()
57 pos = m_subcommand_dict.find(sub_cmd); in GetSubcommandSP()
67 CommandObjectMultiword::GetSubcommandObject(llvm::StringRef sub_cmd, in GetSubcommandObject() argument
69 return GetSubcommandSP(sub_cmd, matches).get(); in GetSubcommandObject()
311 CommandObjectProxy::GetSubcommandSP(llvm::StringRef sub_cmd, in GetSubcommandSP() argument
315 return proxy_command->GetSubcommandSP(sub_cmd, matches); in GetSubcommandSP()
319 CommandObject *CommandObjectProxy::GetSubcommandObject(llvm::StringRef sub_cmd, in GetSubcommandObject() argument
323 return proxy_command->GetSubcommandObject(sub_cmd, matches); in GetSubcommandObject()