Searched defs:getopt (Results 1 - 25 of 182) sorted by relevance

12345678

/external/python/cpython2/Tools/scripts/
H A Drgrep.py10 import getopt namespace
15 opts, args = getopt.getopt(sys.argv[1:], "i")
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 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 Difdef.py30 import getopt namespace
36 opts, args = getopt.getopt(sys.argv[1:], 'D:U:')
H A Dcvsfiles.py16 import getopt namespace
22 opts, args = getopt.getopt(sys.argv[1:], "n:")
23 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 Dfixnotice.py45 import getopt namespace
62 opts, args = getopt.getopt(sys.argv[1:], 'hv',
65 except getopt.error, msg:
H A Dlogmerge.py37 import sys, errno, getopt, re namespace
47 opts, args = getopt.getopt(sys.argv[1:], "trb:h")
H A Dpickle2db.py27 import getopt namespace
57 opts, args = getopt.getopt(args, "hbrdag",
60 except getopt.error:
H A Dtexcheck.py27 import getopt namespace
199 optitems, arglist = getopt.getopt(args, "k:mdhs:v")
/external/python/cpython3/Tools/scripts/
H A Drgrep.py10 import getopt namespace
16 opts, args = getopt.getopt(sys.argv[1:], "i")
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 as msg:
H A Difdef.py30 import getopt namespace
36 opts, args = getopt.getopt(sys.argv[1:], 'D:U:')
H A Duntabify.py7 import getopt namespace
13 opts, args = getopt.getopt(sys.argv[1:], "t:")
15 raise getopt.error("At least one file argument required")
16 except getopt.error as msg:
/external/libvpx/libvpx/test/android/
H A Dscrape_gtest_log.py16 import getopt namespace
30 getopt.getopt(sys.argv[1:], \
32 except getopt.GetOptError:
/external/python/cpython2/Mac/scripts/
H A Dcachersrc.py10 import getopt namespace
27 opts, args = getopt.getopt(sys.argv[1:], 'vf')
30 except (getopt.GetoptError, NoArgsError):
/external/python/cpython2/Tools/compiler/
H A Dcompile.py2 import getopt namespace
13 opts, args = getopt.getopt(sys.argv[1:], 'vqdcp')
/external/fonttools/MetaTools/
H A DroundTrip.py20 import getopt namespace
70 rawOptions, files = getopt.getopt(args, "it:x:")
71 except getopt.GetoptError:
/external/freetype/src/tools/docmaker/
H A Ddocbeauty.py15 import sys, os, time, string, getopt namespace
58 opts, args = getopt.getopt( sys.argv[1:], \
61 except getopt.GetoptError:
H A Ddocmaker.py34 import sys, os, time, string, glob, getopt namespace
57 opts, args = getopt.getopt( sys.argv[1:],
60 except getopt.GetoptError:
/external/ltp/testcases/kernel/io/disktest/
H A DGetopt.c55 * have getopt
60 * Fixed windows getopt to return correctly
77 #include "getopt.h"
81 * FUNCTION: getopt()
85 * to conform with unix like getopt.
93 int getopt(int argc, char **argv, char *pszValidOpts) function
/external/python/cpython2/Demo/scripts/
H A Dmarkov.py36 import sys, random, getopt namespace
39 opts, args = getopt.getopt(args, '0123456789cdwq')
40 except getopt.error:
H A Dscript.py10 import os, time, sys, getopt namespace
25 opts, args = getopt.getopt(sys.argv[1:], 'ap')
26 except getopt.error, msg:
/external/python/cpython2/Tools/versioncheck/
H A Dcheckversions.py6 import getopt namespace
39 options, arguments = getopt.getopt(sys.argv[1:], 'v:')
40 except getopt.error:

Completed in 481 milliseconds

12345678