/external/python/cpython2/Lib/distutils/ |
D | fancy_getopt.py | 75 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/ |
D | fancy_getopt.py | 70 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/ |
D | fancy_getopt.py | 70 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/ |
D | cmd_load_fmap.c | 51 static char *short_opts = ":o:"; variable 103 while ((i = getopt_long(argc, argv, short_opts, long_opts, 0)) != -1) { in do_load_fmap()
|
D | cmd_gbb_utility.c | 81 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()
|
D | cmd_show.c | 585 static char *short_opts = ":f:k:t"; variable 625 while ((i = getopt_long(argc, argv, short_opts, long_opts, 0)) != -1) { in do_show()
|
D | cmd_sign.c | 699 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/ |
D | igt_core.h | 270 #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, \
|
D | igt_core.c | 752 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/ |
D | TfLiteBenchmark-Armnn.cpp | 58 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/ |
D | squish.lua | 3 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/ |
D | util.c | 427 const char *short_opts, in util_usage() argument 440 "Options: -[%s]\n", synopsis, short_opts); in util_usage()
|
D | util.h | 201 const char *short_opts,
|
/external/python/cpython3/Lib/ |
D | optparse.py | 353 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/ |
D | optparse.py | 347 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/ |
D | intel_residency.c | 617 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()
|
D | intel_infoframes.c | 1089 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/ |
D | main.c | 652 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()
|