Lines Matching refs:sub_cmd
31 CommandObjectMultiword::GetSubcommandSPExact(llvm::StringRef sub_cmd) { in GetSubcommandSPExact() argument
35 auto pos = m_subcommand_dict.find(std::string(sub_cmd)); in GetSubcommandSPExact()
42 CommandObjectSP CommandObjectMultiword::GetSubcommandSP(llvm::StringRef sub_cmd, in GetSubcommandSP() argument
47 CommandObjectSP return_cmd_sp = GetSubcommandSPExact(sub_cmd); in GetSubcommandSP()
50 matches->AppendString(sub_cmd); in GetSubcommandSP()
60 AddNamesMatchingPartialString(m_subcommand_dict, sub_cmd, *matches); in GetSubcommandSP()
66 sub_cmd = matches->GetStringAtIndex(0); in GetSubcommandSP()
67 pos = m_subcommand_dict.find(std::string(sub_cmd)); in GetSubcommandSP()
76 CommandObjectMultiword::GetSubcommandObject(llvm::StringRef sub_cmd, in GetSubcommandObject() argument
78 return GetSubcommandSP(sub_cmd, matches).get(); in GetSubcommandObject()
367 CommandObjectProxy::GetSubcommandSP(llvm::StringRef sub_cmd, in GetSubcommandSP() argument
371 return proxy_command->GetSubcommandSP(sub_cmd, matches); in GetSubcommandSP()
375 CommandObject *CommandObjectProxy::GetSubcommandObject(llvm::StringRef sub_cmd, in GetSubcommandObject() argument
379 return proxy_command->GetSubcommandObject(sub_cmd, matches); in GetSubcommandObject()