Lines Matching refs:sub_cmd
30 CommandObjectMultiword::GetSubcommandSPExact(llvm::StringRef sub_cmd) { in GetSubcommandSPExact() argument
34 auto pos = m_subcommand_dict.find(std::string(sub_cmd)); in GetSubcommandSPExact()
41 CommandObjectSP CommandObjectMultiword::GetSubcommandSP(llvm::StringRef sub_cmd, in GetSubcommandSP() argument
46 CommandObjectSP return_cmd_sp = GetSubcommandSPExact(sub_cmd); in GetSubcommandSP()
49 matches->AppendString(sub_cmd); in GetSubcommandSP()
59 AddNamesMatchingPartialString(m_subcommand_dict, sub_cmd, *matches); in GetSubcommandSP()
65 sub_cmd = matches->GetStringAtIndex(0); in GetSubcommandSP()
66 pos = m_subcommand_dict.find(std::string(sub_cmd)); in GetSubcommandSP()
75 CommandObjectMultiword::GetSubcommandObject(llvm::StringRef sub_cmd, in GetSubcommandObject() argument
77 return GetSubcommandSP(sub_cmd, matches).get(); in GetSubcommandObject()
372 CommandObjectProxy::GetSubcommandSP(llvm::StringRef sub_cmd, in GetSubcommandSP() argument
376 return proxy_command->GetSubcommandSP(sub_cmd, matches); in GetSubcommandSP()
380 CommandObject *CommandObjectProxy::GetSubcommandObject(llvm::StringRef sub_cmd, in GetSubcommandObject() argument
384 return proxy_command->GetSubcommandObject(sub_cmd, matches); in GetSubcommandObject()