Lines Matching defs:sub_cmd
31 CommandObjectMultiword::GetSubcommandSPExact(llvm::StringRef sub_cmd) {
35 auto pos = m_subcommand_dict.find(sub_cmd);
42 CommandObjectSP CommandObjectMultiword::GetSubcommandSP(llvm::StringRef sub_cmd,
47 CommandObjectSP return_cmd_sp = GetSubcommandSPExact(sub_cmd);
50 matches->AppendString(sub_cmd);
60 AddNamesMatchingPartialString(m_subcommand_dict, sub_cmd, *matches);
66 sub_cmd = matches->GetStringAtIndex(0);
67 pos = m_subcommand_dict.find(sub_cmd);
76 CommandObjectMultiword::GetSubcommandObject(llvm::StringRef sub_cmd,
78 return GetSubcommandSP(sub_cmd, matches).get();
382 CommandObjectProxy::GetSubcommandSP(llvm::StringRef sub_cmd,
386 return proxy_command->GetSubcommandSP(sub_cmd, matches);
390 CommandObject *CommandObjectProxy::GetSubcommandObject(llvm::StringRef sub_cmd,
394 return proxy_command->GetSubcommandObject(sub_cmd, matches);