/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
getopt.py | 51 def getopt(args, shortopts, longopts = []): 56 running program. Typically, this means "sys.argv[1:]". shortopts 90 opts, args = do_shorts(opts, args[0][1:], shortopts, args[1:]) 94 def gnu_getopt(args, shortopts, longopts = []): 117 if shortopts.startswith('+'): 118 shortopts = shortopts[1:] 133 opts, args = do_shorts(opts, args[0][1:], shortopts, args[1:]) 187 def do_shorts(opts, optstring, shortopts, args): 190 if short_has_arg(opt, shortopts) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
getopt.py | 51 def getopt(args, shortopts, longopts = []): 56 running program. Typically, this means "sys.argv[1:]". shortopts 90 opts, args = do_shorts(opts, args[0][1:], shortopts, args[1:]) 94 def gnu_getopt(args, shortopts, longopts = []): 117 if shortopts.startswith('+'): 118 shortopts = shortopts[1:] 133 opts, args = do_shorts(opts, args[0][1:], shortopts, args[1:]) 187 def do_shorts(opts, optstring, shortopts, args): 190 if short_has_arg(opt, shortopts) [all...] |
/external/e2fsprogs/include/nonunix/ |
getopt.h | 108 extern int getopt (int argc, char *const *argv, const char *shortopts); 112 extern int getopt_long (int argc, char *const *argv, const char *shortopts, 115 const char *shortopts, 120 const char *shortopts,
|
/external/grub/lib/ |
getopt.h | 106 extern int getopt (int argc, char *const *argv, const char *shortopts); 110 extern int getopt_long (int argc, char *const *argv, const char *shortopts, 113 const char *shortopts, 118 const char *shortopts,
|
/ndk/sources/host-tools/make-3.81/ |
getopt.h | 106 extern int getopt (int argc, char *const *argv, const char *shortopts); 110 extern int getopt_long (int argc, char *const *argv, const char *shortopts, 113 const char *shortopts, 118 const char *shortopts,
|
/external/iptables/iptables/ |
iptables-apply | 58 SHORTOPTS="t:Vh"; 61 OPTS=$(getopt -s bash -o "$SHORTOPTS" -l "$LONGOPTS" -n "$PROGNAME" -- "$@") || exit $?
|
/ndk/sources/host-tools/sed-4.2.1/sed/ |
sed.c | 177 #define SHORTOPTS "bsnrRuEe:f:l:i::V:" 179 #define SHORTOPTS "bsnruEe:f:l:i::V:" 241 while ((opt = getopt_long(argc, argv, SHORTOPTS, longopts, NULL)) != EOF)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_getopt.py | 177 longopts, shortopts = getopt.getopt(['--help='], '', ['help=']) 179 longopts, shortopts = getopt.getopt(['--help=x'], '', ['help='])
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_getopt.py | 177 longopts, shortopts = getopt.getopt(['--help='], '', ['help=']) 179 longopts, shortopts = getopt.getopt(['--help=x'], '', ['help='])
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/ |
bundlebuilder.py | 853 shortopts = "b:n:r:f:e:m:c:p:lx:i:hvqa" 863 options, args = getopt.getopt(sys.argv[1:], shortopts, longopts) [all...] |
gensuitemodule.py | 49 SHORTOPTS = "rb:o:e:c:dv" 52 opts, args = getopt.getopt(sys.argv[1:], SHORTOPTS, LONGOPTS) [all...] |
/external/chromium-trace/trace-viewer/third_party/python_gflags/ |
gflags.py | [all...] |
/external/chromium_org/third_party/python_gflags/ |
gflags.py | [all...] |
/prebuilts/misc/common/commons-cli/ |
commons-cli-1.2.jar | |