Searched refs:getopt (Results 1 - 25 of 100) sorted by relevance

1234

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_getopt.py7 import getopt namespace
22 self.assertRaises(getopt.GetoptError, *args, **kwargs)
25 self.assertTrue(getopt.short_has_arg('a', 'a:'))
26 self.assertFalse(getopt.short_has_arg('a', 'a'))
27 self.assertError(getopt.short_has_arg, 'a', 'b')
30 has_arg, option = getopt.long_has_args('abc', ['abc='])
34 has_arg, option = getopt.long_has_args('abc', ['abc'])
38 has_arg, option = getopt.long_has_args('abc', ['abcd'])
42 self.assertError(getopt.long_has_args, 'abc', ['def'])
43 self.assertError(getopt
[all...]
/device/linaro/bootloader/arm-trusted-firmware/tools/fiptool/
H A Dfiptool_platform.h17 # include <getopt.h>
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
H A Dfindlinksto.py10 import getopt namespace
14 opts, args = getopt.getopt(sys.argv[1:], '')
16 raise getopt.GetoptError('not enough arguments', None)
17 except getopt.GetoptError, msg:
H A Duntabify.py7 import getopt namespace
12 opts, args = getopt.getopt(sys.argv[1:], "t:")
14 raise getopt.error, "At least one file argument required"
15 except getopt.error, msg:
H A Dcvsfiles.py16 import getopt namespace
22 opts, args = getopt.getopt(sys.argv[1:], "n:")
23 except getopt.error, msg:
H A Dfixnotice.py45 import getopt namespace
62 opts, args = getopt.getopt(sys.argv[1:], 'hv',
65 except getopt.error, msg:
H A Ddb2pickle.py22 import getopt namespace
52 opts, args = getopt.getopt(args, "hbrdag",
55 except getopt.error:
H A Dfinddiv.py20 import getopt namespace
25 opts, args = getopt.getopt(sys.argv[1:], "lh")
26 except getopt.error, msg:
H A Dfindnocoding.py10 import sys, os, re, getopt namespace
80 opts, args = getopt.getopt(sys.argv[1:], 'cd')
81 except getopt.error, msg:
H A Dndiff.py85 import getopt namespace
87 opts, args = getopt.getopt(args, "qr:")
88 except getopt.error, detail:
H A Dpickle2db.py27 import getopt namespace
57 opts, args = getopt.getopt(args, "hbrdag",
60 except getopt.error:
H A Drgrep.py10 import getopt namespace
15 opts, args = getopt.getopt(sys.argv[1:], "i")
H A Dmd5sum.py22 import getopt namespace
72 opts, args = getopt.getopt(args, 'blts:')
73 except getopt.error, msg:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/
H A Dscript.py10 import os, time, sys, getopt namespace
25 opts, args = getopt.getopt(sys.argv[1:], 'ap')
26 except getopt.error, msg:
H A Dpp.py25 import getopt namespace
36 optlist, ARGS = getopt.getopt(sys.argv[1:], 'acde:F:np')
37 except getopt.error, msg:
H A Dmarkov.py36 import sys, random, getopt namespace
39 opts, args = getopt.getopt(args, '0123456789cdwq')
40 except getopt.error:
H A Dmboxconvert.py12 import getopt namespace
18 opts, args = getopt.getopt(sys.argv[1:], 'f')
19 except getopt.error, msg:
H A Dmorse.py70 import getopt namespace
72 opts, args = getopt.getopt(sys.argv[1:], 'o:p:')
73 except getopt.error:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/versioncheck/
H A Dcheckversions.py6 import getopt namespace
39 options, arguments = getopt.getopt(sys.argv[1:], 'v:')
40 except getopt.error:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
H A Dcmdfw.py41 import getopt, sys namespace
44 opts, args = getopt.getopt(args, self.GlobalFlags)
45 except getopt.error, msg:
64 opts, args = getopt.getopt(args[1:], flags)
65 except getopt.error, msg:
72 """Process the options retrieved by getopt.
H A Drrcs.py7 import getopt namespace
16 opts, rest = getopt.getopt(sys.argv[1:], 'h:p:d:qvL')
22 raise getopt.error, "unknown command"
24 copts, files = getopt.getopt(rest, coptset)
25 except getopt.error, msg:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/compiler/
H A Dcompile.py2 import getopt namespace
13 opts, args = getopt.getopt(sys.argv[1:], 'vqdcp')
/device/linaro/bootloader/arm-trusted-firmware/tools/cert_create/include/
H A Dcmd_opt.h10 #include <getopt.h>
/device/linaro/bootloader/edk2/ArmPlatformPkg/Scripts/Ds5/
H A Dcmd_load_symbols.py16 import re, sys, getopt namespace
35 opts,args = getopt.getopt(sys.argv[1:], "hvar:vm:vr:vf:v", ["help","verbose","all","report=","sysmem=","rom=","fv="])
/device/google/marlin/dataservices/datatop/src/
H A Ddatatop_opt.c32 * @brief Adds getopt functionality for CLI commands.
34 * Contains method for getopt functionality used for parsing
44 #include <getopt.h>
81 while ((option = getopt(argc, argv, "phi:t:w:s:n:")) != -1) {

Completed in 164 milliseconds

1234