Home
last modified time | relevance | path

Searched refs:short_opts (Results 1 – 18 of 18) sorted by relevance

/external/python/cpython2/Lib/distutils/
Dfancy_getopt.py75 self.short_opts = []
152 self.short_opts = []
226 self.short_opts.append(short)
255 short_opts = string.join(self.short_opts)
257 opts, args = getopt.getopt(args, short_opts, self.long_opts)
/external/python/cpython3/Lib/distutils/
Dfancy_getopt.py70 self.short_opts = []
139 self.short_opts = []
207 self.short_opts.append(short)
231 short_opts = ' '.join(self.short_opts)
233 opts, args = getopt.getopt(args, short_opts, self.long_opts)
/external/python/setuptools/setuptools/_distutils/
Dfancy_getopt.py70 self.short_opts = []
139 self.short_opts = []
207 self.short_opts.append(short)
231 short_opts = ' '.join(self.short_opts)
233 opts, args = getopt.getopt(args, short_opts, self.long_opts)
/external/vboot_reference/futility/
Dcmd_load_fmap.c51 static char *short_opts = ":o:"; variable
103 while ((i = getopt_long(argc, argv, short_opts, long_opts, 0)) != -1) { in do_load_fmap()
Dcmd_gbb_utility.c81 static char *short_opts = ":gsc:o:k:b:r:"; variable
372 while ((i = getopt_long(argc, argv, short_opts, long_opts, 0)) != -1) { in do_gbb_utility()
Dcmd_show.c585 static char *short_opts = ":f:k:t"; variable
625 while ((i = getopt_long(argc, argv, short_opts, long_opts, 0)) != -1) { in do_show()
Dcmd_sign.c699 static char *short_opts = ":s:b:k:S:B:v:f:d:l:"; variable
716 while ((i = getopt_long(argc, argv, short_opts, long_opts, 0)) != -1) { in do_sign()
/external/igt-gpu-tools/lib/
Digt_core.h270 #define igt_main_args(short_opts, long_opts, help_str, opt_handler, handler_data) \ argument
274 short_opts, long_opts, help_str, \
326 #define igt_simple_main_args(short_opts, long_opts, help_str, opt_handler, handler_data) \ argument
330 short_opts, long_opts, help_str, \
Digt_core.c752 char *short_opts; in common_init() local
829 ret = asprintf(&short_opts, "%s%s", in common_init()
834 while ((c = getopt_long(*argc, argv, short_opts, combined_opts, in common_init()
889 free(short_opts); in common_init()
/external/armnn/tests/TfLiteBenchmark-Armnn/
DTfLiteBenchmark-Armnn.cpp58 const char* const short_opts = "m:b:l:h"; in process_args() local
69 const auto opt = getopt_long(argc, argv, short_opts, long_opts, nullptr); in process_args()
/external/bcc/src/lua/src/
Dsquish.lua3 local short_opts = { v = "verbose", vv = "very_verbose", o = "output", q = "quiet", qq = "very_quie…
9 name = (short_opts[name] or name):gsub("%-+", "_");
/external/dtc/
Dutil.c427 const char *short_opts, in util_usage() argument
440 "Options: -[%s]\n", synopsis, short_opts); in util_usage()
Dutil.h201 const char *short_opts,
/external/python/cpython3/Lib/
Doptparse.py353 short_opts = [self._short_opt_fmt % (sopt, metavar)
358 short_opts = option._short_opts
362 opts = short_opts + long_opts
364 opts = long_opts + short_opts
/external/python/cpython2/Lib/
Doptparse.py347 short_opts = [self._short_opt_fmt % (sopt, metavar)
352 short_opts = option._short_opts
356 opts = short_opts + long_opts
358 opts = long_opts + short_opts
/external/igt-gpu-tools/tools/
Dintel_residency.c617 char short_opts[] = "d:lrbw:c:i:fsn:"; in parse_opts() local
633 opt = getopt_long(argc, argv, short_opts, long_opts, NULL); in parse_opts()
Dintel_infoframes.c1089 char short_opts[] = "dc:k:q:nNxXp:P:t:f:h"; in main() local
1129 opt = getopt_long(argc, argv, short_opts, long_opts, NULL); in main()
/external/flac/src/flac/
Dmain.c652 const char *short_opts = "0123456789aA:b:cdefFhHl:mMo:pP:q:r:sS:tT:vVw"; in parse_options() local
654 …while ((short_option = share__getopt_long(argc, argv, short_opts, long_options_, &option_index)) !… in parse_options()