Home
last modified time | relevance | path

Searched refs:short_opts (Results 1 – 9 of 9) 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/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/dtc/
Dutil.c422 const char *short_opts, in util_usage() argument
435 "Options: -[%s]\n", synopsis, short_opts); in util_usage()
Dutil.h215 const char *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/autotest/contrib/
Dcoverage.py354 short_opts = string.join(map(lambda o: o[1:], optmap.keys()), '')
356 options, args = getopt.getopt(argv, short_opts, long_opts)