HomeSort by: relevance | last modified time | path
    Searched defs:options (Results 1 - 25 of 1166) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/bsd/zstd/dist/contrib/pzstd/
main.cpp 10 #include "Options.h"
16 Options options; local
17 switch (options.parse(argc, argv)) {
18 case Options::Status::Failure:
20 case Options::Status::Message:
26 return pzstdMain(options);
main.cpp 10 #include "Options.h"
16 Options options; local
17 switch (options.parse(argc, argv)) {
18 case Options::Status::Failure:
20 case Options::Status::Message:
26 return pzstdMain(options);
  /src/external/gpl2/gettext/dist/gettext-tools/examples/hello-c++-kde/
hello.cc 21 // Comment line options.
23 static KCmdLineOptions options[] = variable
25 { 0, 0, 0 } // End of options.
55 KCmdLineArgs::addCmdLineOptions (options);
hello.cc 21 // Comment line options.
23 static KCmdLineOptions options[] = variable
25 { 0, 0, 0 } // End of options.
55 KCmdLineArgs::addCmdLineOptions (options);
  /src/sys/arch/i386/stand/lib/
menuutils.c 48 char *options; local
51 options = gettrailer(arg);
55 (*commands[i].c_fn)(options);
parseutils.c 53 char *options; local
55 for (options = arg; *options; options++) {
56 switch (*options) {
59 *options++ = '\0';
66 if (*options == '\0')
67 return options;
70 while (*options == ' ' || *options == '\t'
    [all...]
menuutils.c 48 char *options; local
51 options = gettrailer(arg);
55 (*commands[i].c_fn)(options);
parseutils.c 53 char *options; local
55 for (options = arg; *options; options++) {
56 switch (*options) {
59 *options++ = '\0';
66 if (*options == '\0')
67 return options;
70 while (*options == ' ' || *options == '\t'
    [all...]
  /src/sys/arch/x68k/stand/libsa/
parseutils.c 59 char *options; local
61 if ((options = strchr(arg, ' ')) == NULL)
64 *options++ = '\0';
67 while (*options == ' ')
68 options++;
70 return options;
127 /* now, deal with options */
parseutils.c 59 char *options; local
61 if ((options = strchr(arg, ' ')) == NULL)
64 *options++ = '\0';
67 while (*options == ' ')
68 options++;
70 return options;
127 /* now, deal with options */
  /src/usr.bin/vndcompress/
main.c 44 static int (*operation)(int, char **, const struct options *) = &vndcompress;
49 static const struct options zero_options;
50 struct options options = zero_options, *O = &options; local
main.c 44 static int (*operation)(int, char **, const struct options *) = &vndcompress;
49 static const struct options zero_options;
50 struct options options = zero_options, *O = &options; local
  /src/external/bsd/mdocml/dist/
test-getsubopt.c 31 char *options = buf; local
35 return ! (getsubopt(&options, tokens, &value) == 0
36 && value == buf+2 && options == buf+3);
test-getsubopt.c 31 char *options = buf; local
35 return ! (getsubopt(&options, tokens, &value) == 0
36 && value == buf+2 && options == buf+3);
  /src/external/gpl2/xcvs/dist/src/
no_diff.c 32 char *ts, *options; local
52 if (vers->entdata && vers->entdata->options)
53 options = xstrdup (vers->entdata->options);
55 options = xstrdup ("");
58 retcode = RCS_cmp_file (vers->srcfile, vers->vn_user, NULL, NULL, options,
66 options, vers->tag, vers->date, NULL);
96 free (options);
no_diff.c 32 char *ts, *options; local
52 if (vers->entdata && vers->entdata->options)
53 options = xstrdup (vers->entdata->options);
55 options = xstrdup ("");
58 retcode = RCS_cmp_file (vers->srcfile, vers->vn_user, NULL, NULL, options,
66 options, vers->tag, vers->date, NULL);
96 free (options);
  /src/external/mit/isl/dist/
closure.c 3 #include <isl/options.h>
9 struct isl_options *options; local
13 options = isl_options_new_with_defaults();
14 assert(options);
15 argc = isl_options_parse(options, argc, argv, ISL_ARG_ALL);
17 ctx = isl_ctx_alloc_with_options(&isl_options_args, options);
flow.c 13 #include <isl/options.h>
25 struct isl_options *options; local
27 options = isl_options_new_with_defaults();
28 argc = isl_options_parse(options, argc, argv, ISL_ARG_ALL);
29 ctx = isl_ctx_alloc_with_options(&isl_options_args, options);
polyhedron_remove_redundant_equalities.c 14 #include <isl/options.h>
26 struct isl_options *options; local
28 options = isl_options_new_with_defaults();
29 argc = isl_options_parse(options, argc, argv, ISL_ARG_ALL);
30 ctx = isl_ctx_alloc_with_options(&isl_options_args, options);
schedule.c 14 #include <isl/options.h>
24 struct isl_options *options; local
26 options = isl_options_new_with_defaults();
27 argc = isl_options_parse(options, argc, argv, ISL_ARG_ALL);
28 ctx = isl_ctx_alloc_with_options(&isl_options_args, options);
closure.c 3 #include <isl/options.h>
9 struct isl_options *options; local
13 options = isl_options_new_with_defaults();
14 assert(options);
15 argc = isl_options_parse(options, argc, argv, ISL_ARG_ALL);
17 ctx = isl_ctx_alloc_with_options(&isl_options_args, options);
flow.c 13 #include <isl/options.h>
25 struct isl_options *options; local
27 options = isl_options_new_with_defaults();
28 argc = isl_options_parse(options, argc, argv, ISL_ARG_ALL);
29 ctx = isl_ctx_alloc_with_options(&isl_options_args, options);
polyhedron_remove_redundant_equalities.c 14 #include <isl/options.h>
26 struct isl_options *options; local
28 options = isl_options_new_with_defaults();
29 argc = isl_options_parse(options, argc, argv, ISL_ARG_ALL);
30 ctx = isl_ctx_alloc_with_options(&isl_options_args, options);
  /src/external/mit/libuv/dist/docs/code/detach/
main.c 7 uv_process_options_t options; variable
17 options.exit_cb = NULL;
18 options.file = "sleep";
19 options.args = args;
20 options.flags = UV_PROCESS_DETACHED;
23 if ((r = uv_spawn(loop, &child_req, &options))) {
  /src/external/mit/libuv/dist/docs/code/spawn/
main.c 8 uv_process_options_t options; variable
23 options.exit_cb = on_exit;
24 options.file = "mkdir";
25 options.args = args;
28 if ((r = uv_spawn(loop, &child_req, &options))) {

Completed in 51 milliseconds

1 2 3 4 5 6 7 8 91011>>