Home
last modified time | relevance | path

Searched refs:sub_command (Results 1 – 25 of 245) sorted by relevance

12345678910

/dports/devel/roswell/roswell-20.06.14.107/src/
H A Dcmd-run.h9 typedef char** (*cmd_run_impl)(int argc,char** argv,struct sub_command* cmd);
16 extern char** cmd_run_sbcl(int argc,char** argv,struct sub_command* cmd);
17 extern char** cmd_run_ccl(int argc,char** argv,struct sub_command* cmd);
18 extern char** cmd_run_clasp(int argc,char** argv,struct sub_command* cmd);
19 extern char** cmd_run_clisp(int argc,char** argv,struct sub_command* cmd);
20 extern char** cmd_run_ecl(int argc,char** argv,struct sub_command* cmd);
21 extern char** cmd_run_abcl(int argc,char** argv,struct sub_command* cmd);
22 extern char** cmd_run_cmu(int argc,char** argv,struct sub_command* cmd);
23 extern char** cmd_run_acl(int argc,char** argv,struct sub_command* cmd);
25 extern char** cmd_run_mkcl(int argc,char** argv,struct sub_command* cmd);
[all …]
H A Dopt.h4 struct sub_command;
5 typedef LVal (*sub_command_fnc)(LVal arg,struct sub_command* cmd);
6 #define DEF_SUBCMD(fname) LVal fname(LVal arg_,struct sub_command* cmd)
15 struct sub_command { struct
/dports/devel/p5-Getopt-Compact-WithCmd/Getopt-Compact-WithCmd-0.22/t/private/
H A Dparse_argv.t11 my ($input, $expects, $sub_command, $desc) =
12 @specs{qw/input expects sub_command desc/};
16 $go->{_struct} = $sub_command || {};
40 sub_command => { bar => 1 },
47 sub_command => { bar => 1 },
54 sub_command => { baz => 1 },
/dports/deskutils/egroupware/egroupware/setup/inc/
H A Dclass.setup_cmd_header.inc.php37 …* @param string|array $sub_command ='create' 'create','edit','delete'(-domain) or array with all a…
40 function __construct($sub_command='create',$arguments=null) argument
42 if (!is_array($sub_command))
44 $sub_command = array(
45 'sub_command' => $sub_command,
50 admin_cmd::__construct($sub_command);
83 if ($this->sub_command != 'create')
91 if ($this->sub_command == 'create')
110 elseif ($this->sub_command == 'delete')
336 …if ($arg == '--domain' && (!isset($GLOBALS['egw_domain'][$domain]) || $this->sub_command == 'creat…
/dports/devel/bear/Bear-3.0.17/source/libflags/source/
H A DFlags.cc226 if (sub_command != commands_.end()) { in parse()
227 return sub_command->parse(argc - 1, argv + 1) in parse()
228 .map<Arguments>([&sub_command](auto arguments) { in parse()
299 .on_success([this, &sub_command](auto args) { in parse_or_exit()
308 print_help(sub_command(command.unwrap()), std::cout); in parse_or_exit()
317 void Parser::print_help(const Parser *sub_command, std::ostream& os) const { in print_help() argument
318 print_usage(sub_command, os); in print_help()
320 const Parser &parser = (sub_command != nullptr) ? *sub_command : *this; in print_help()
339 void Parser::print_usage(const Parser *sub_command, std::ostream& os) const { in print_usage() argument
342 if (sub_command != nullptr) { in print_usage()
[all …]
/dports/devel/py-clikit/clikit-0.6.2/src/clikit/ui/help/
H A Dcommand_help.py52 for sub_command in command.default_sub_commands:
56 name_optional = not sub_command.config.is_anonymous()
58 formats_to_print.append((sub_command.args_format, name_optional))
64 for sub_command in command.sub_commands:
65 if sub_command.config.is_hidden():
69 if not sub_command.config.is_default():
70 formats_to_print.append((sub_command.args_format, False))
98 for sub_command in sorted(sub_commands, key=lambda c: c.name):
99 self._render_sub_command(layout, sub_command)
/dports/sysutils/py-borgmatic/borgmatic-1.5.21/scripts/
H A Dfind-unsupported-borg-options18 for sub_command in prune create check list info; do
19 echo "********** borg $sub_command **********"
21 …for line in $(borgmatic --config temp.yaml $sub_command -v 2 2>&1 | grep "borg\w* $sub_command") ;…
27 for word in $(borg $sub_command --help | grep '^ -') ; do
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/lldb/source/Commands/
H A DCommandObjectLog.cpp318 auto sub_command = args[0].ref(); in DoExecute() local
320 if (sub_command.equals_lower("enable")) { in DoExecute()
323 } else if (sub_command.equals_lower("disable")) { in DoExecute()
327 } else if (sub_command.equals_lower("dump")) { in DoExecute()
330 } else if (sub_command.equals_lower("reset")) { in DoExecute()
335 auto sub_command = args[0].ref(); in DoExecute() local
338 if (sub_command.equals_lower("enable")) { in DoExecute()
347 } else if (sub_command.equals_lower("increment")) { in DoExecute()
H A DCommandObjectHelp.cpp108 std::string sub_command; in DoExecute() local
110 sub_command = entry.ref(); in DoExecute()
121 sub_cmd_obj->GetSubcommandObject(sub_command.c_str(), &matches); in DoExecute()
148 m_interpreter.GetCommandPrefix(), sub_command.c_str()); in DoExecute()
155 m_interpreter.GetCommandPrefix(), sub_command.c_str()); in DoExecute()
/dports/devel/ros-rosdep/rosdep-0.18.0/src/rosdep2/
H A Dinstallers.py563 for sub_command in command:
564 if isinstance(sub_command[0], list):
565 sub_cmd_len = len(sub_command)
566 for i, cmd in enumerate(sub_command):
569 print(' ' + ' '.join(sub_command))
587 for sub_command in command:
588 if isinstance(sub_command[0], list): # list of alternatives
590 for alt_command in sub_command:
597 result = run_command(sub_command, installer_key, failures, verbose)
/dports/graphics/gimp-app/gimp-2.10.30/plug-ins/imagemap/
H A Dimap_cmd_select_next.c58 Command_t *sub_command; in select_one_object() local
60 sub_command = (obj->selected) in select_one_object()
62 command_add_subcommand(&command->parent, sub_command); in select_one_object()
H A Dimap_cmd_select_prev.c58 Command_t *sub_command; in select_one_object() local
60 sub_command = (obj->selected) in select_one_object()
62 command_add_subcommand(&command->parent, sub_command); in select_one_object()
H A Dimap_cmd_select_region.c57 Command_t *sub_command; in select_region_command_new() local
66 sub_command = unselect_all_command_new(list, NULL); in select_region_command_new()
67 command_add_subcommand(&command->parent, sub_command); in select_region_command_new()
68 command->unselect_command = sub_command; in select_region_command_new()
/dports/devel/p5-MooX-Options/MooX-Options-4.103/lib/MooX/Options/Descriptive/
H A DUsage.pm318 for my $sub_command (@$sub_commands) {
319 if ($sub_command->{command}->can("_options_config")
322 = { $sub_command->{command}->_options_config }
327 push @man, "=item B<" . $sub_command->{name} . "> : " . $desc;
330 push @man, "=item B<" . $sub_command->{name} . "> :";
335 . $sub_command->{name}
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/lldb/source/Commands/
H A DCommandObjectHelp.cpp108 std::string sub_command; in DoExecute() local
110 sub_command = std::string(entry.ref()); in DoExecute()
121 sub_cmd_obj->GetSubcommandObject(sub_command.c_str(), &matches); in DoExecute()
147 m_interpreter.GetCommandPrefix(), sub_command.c_str()); in DoExecute()
153 m_interpreter.GetCommandPrefix(), sub_command.c_str()); in DoExecute()
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/lldb/source/Commands/
H A DCommandObjectHelp.cpp108 std::string sub_command; in DoExecute() local
110 sub_command = std::string(entry.ref()); in DoExecute()
121 sub_cmd_obj->GetSubcommandObject(sub_command.c_str(), &matches); in DoExecute()
147 m_interpreter.GetCommandPrefix(), sub_command.c_str()); in DoExecute()
153 m_interpreter.GetCommandPrefix(), sub_command.c_str()); in DoExecute()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/lldb/source/Commands/
H A DCommandObjectHelp.cpp108 std::string sub_command; in DoExecute() local
110 sub_command = std::string(entry.ref()); in DoExecute()
121 sub_cmd_obj->GetSubcommandObject(sub_command.c_str(), &matches); in DoExecute()
147 m_interpreter.GetCommandPrefix(), sub_command.c_str()); in DoExecute()
153 m_interpreter.GetCommandPrefix(), sub_command.c_str()); in DoExecute()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/lldb/source/Commands/
H A DCommandObjectHelp.cpp108 std::string sub_command; in DoExecute() local
110 sub_command = std::string(entry.ref()); in DoExecute()
121 sub_cmd_obj->GetSubcommandObject(sub_command.c_str(), &matches); in DoExecute()
147 m_interpreter.GetCommandPrefix(), sub_command.c_str()); in DoExecute()
153 m_interpreter.GetCommandPrefix(), sub_command.c_str()); in DoExecute()
/dports/devel/llvm13/llvm-project-13.0.1.src/lldb/source/Commands/
H A DCommandObjectHelp.cpp108 std::string sub_command; in DoExecute() local
110 sub_command = std::string(entry.ref()); in DoExecute()
121 sub_cmd_obj->GetSubcommandObject(sub_command.c_str(), &matches); in DoExecute()
147 m_interpreter.GetCommandPrefix(), sub_command.c_str()); in DoExecute()
153 m_interpreter.GetCommandPrefix(), sub_command.c_str()); in DoExecute()
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/platform/x86/intel_speed_select_if/
H A Disst_if_mbox_msr.c34 static int isst_if_send_mbox_cmd(u8 command, u8 sub_command, u32 parameter, in isst_if_send_mbox_cmd() argument
62 (sub_command << 8) | in isst_if_send_mbox_cmd()
100 act->mbox_cmd->sub_command, in msrl_update_func()
134 action.mbox_cmd->sub_command, in isst_if_mbox_proc_cmd()
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/platform/x86/intel_speed_select_if/
H A Disst_if_mbox_msr.c34 static int isst_if_send_mbox_cmd(u8 command, u8 sub_command, u32 parameter, in isst_if_send_mbox_cmd() argument
62 (sub_command << 8) | in isst_if_send_mbox_cmd()
100 act->mbox_cmd->sub_command, in msrl_update_func()
134 action.mbox_cmd->sub_command, in isst_if_mbox_proc_cmd()
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/platform/x86/intel_speed_select_if/
H A Disst_if_mbox_msr.c34 static int isst_if_send_mbox_cmd(u8 command, u8 sub_command, u32 parameter, in isst_if_send_mbox_cmd() argument
62 (sub_command << 8) | in isst_if_send_mbox_cmd()
100 act->mbox_cmd->sub_command, in msrl_update_func()
134 action.mbox_cmd->sub_command, in isst_if_mbox_proc_cmd()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/lldb/source/Commands/
H A DCommandObjectHelp.cpp108 std::string sub_command; in DoExecute() local
110 sub_command = std::string(entry.ref()); in DoExecute()
121 sub_cmd_obj->GetSubcommandObject(sub_command.c_str(), &matches); in DoExecute()
148 m_interpreter.GetCommandPrefix(), sub_command.c_str()); in DoExecute()
155 m_interpreter.GetCommandPrefix(), sub_command.c_str()); in DoExecute()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/lldb/source/Commands/
H A DCommandObjectHelp.cpp108 std::string sub_command; in DoExecute() local
110 sub_command = std::string(entry.ref()); in DoExecute()
121 sub_cmd_obj->GetSubcommandObject(sub_command.c_str(), &matches); in DoExecute()
148 m_interpreter.GetCommandPrefix(), sub_command.c_str()); in DoExecute()
155 m_interpreter.GetCommandPrefix(), sub_command.c_str()); in DoExecute()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/lldb/source/Commands/
H A DCommandObjectHelp.cpp108 std::string sub_command; in DoExecute() local
110 sub_command = std::string(entry.ref()); in DoExecute()
121 sub_cmd_obj->GetSubcommandObject(sub_command.c_str(), &matches); in DoExecute()
148 m_interpreter.GetCommandPrefix(), sub_command.c_str()); in DoExecute()
155 m_interpreter.GetCommandPrefix(), sub_command.c_str()); in DoExecute()

12345678910