Home
last modified time | relevance | path

Searched refs:getopt (Results 1 – 25 of 361) sorted by relevance

12345678910>>...15

/external/bison/m4/
Dgetopt.m41 # getopt.m4 serial 44
7 # Request a POSIX compliant getopt function.
13 dnl Other modules can request the gnulib implementation of the getopt
25 dnl Arrange for getopt.h to be created.
30 # Request a POSIX compliant getopt function with GNU extensions (such as
40 # Determine whether to replace the entire getopt facility.
49 gl_CHECK_NEXT_HEADERS([getopt.h])
59 dnl Test whether <getopt.h> is available.
61 AC_CHECK_HEADERS([getopt.h], [], [gl_replace_getopt=yes])
72 dnl behavior with getopt-gnu.
[all …]
/external/bison/darwin-lib/
Dgetopt.h32 # include_next <getopt.h>
58 # undef getopt
69 # define getopt __GETOPT_ID (getopt) macro
241 extern int getopt (int ___argc, char *const *___argv, const char *__shortopts)
/external/libvpx/libvpx/test/android/
Dscrape_gtest_log.py16 import getopt
30 getopt.getopt(sys.argv[1:], \
32 except getopt.GetOptError:
/external/libcxx/buildcmds/
Dconfigtests.py3 import getopt
9 opts, _ = getopt.getopt(sys.argv[1:], '', [
11 except getopt.GetoptError as err:
/external/vboot_reference/scripts/image_signing/lib/shflags/
Dshflags37 # -- as in getopt(), terminates flag-processing
53 # NOTE: Not all systems include a getopt version that supports long flags. On
67 # __flags_opts: options parsed by getopt
114 # getopt version
119 getopt >/dev/null 2>&1
121 0) __FLAGS_GETOPT_VERS=${__FLAGS_GETOPT_VERS_STD} ;; # bsd getopt
123 # TODO(kward): look into '-T' option to test the internal getopt() version
124 if [ "`getopt --version`" = '-- ' ]; then
131 _flags_fatal 'unable to determine getopt version'
136 # getopt optstring lengths
[all …]
/external/mesa3d/src/getopt/
DSConscript10 getopt = env.ConvenienceLibrary(
11 target = 'getopt',
15 Export('getopt')
/external/libvpx/libvpx/tools/
Dall_builds.py3 import getopt
41 o, _ = getopt.getopt(argv[1:opt_end_index], None, LONG_OPTIONS)
42 except getopt.GetoptError, err:
/external/blktrace/btt/
Dbno_plot.py41 import getopt, glob, os, sys, tempfile
62 (opts, args) = getopt.getopt(in_args, s_opts, l_opts)
63 except getopt.error, msg:
/external/fonttools/MetaTools/
DroundTrip.py20 import getopt
70 rawOptions, files = getopt.getopt(args, "it:x:")
71 except getopt.GetoptError:
/external/bison/lib/
Dgetopt.in.h57 # undef getopt
68 # define getopt __GETOPT_ID (getopt) macro
230 extern int getopt (int ___argc, char *const *___argv, const char *__shortopts)
/external/tcpdump/win32/Include/
Dgetopt.h111 extern int getopt (int argc, char *const *argv, const char *shortopts);
113 extern int getopt ();
127 extern int getopt ();
/external/e2fsprogs/include/nonunix/
Dgetopt.h108 extern int getopt (int argc, char *const *argv, const char *shortopts);
110 extern int getopt ();
124 extern int getopt ();
/external/wpa_supplicant_8/wpa_supplicant/examples/p2p/
Dp2p_flush.py12 import getopt
122 options, args = getopt.getopt(sys.argv[1:],"hi:w:")
124 except getopt.GetoptError:
Dp2p_listen.py12 import getopt
123 options, args = getopt.getopt(sys.argv[1:],"hi:t:w:")
125 except getopt.GetoptError:
Dp2p_stop_find.py10 import getopt
127 options, args = getopt.getopt(sys.argv[1:],"ht:i:w:")
129 except getopt.GetoptError:
Dp2p_disconnect.py11 import getopt
122 options, args = getopt.getopt(sys.argv[1:],"hi:w:")
124 except getopt.GetoptError:
Dp2p_find.py12 import getopt
133 options, args = getopt.getopt(sys.argv[1:],"hi:t:w:")
135 except getopt.GetoptError:
/external/lldb/test/pexpect-2.4/examples/
Dastat.py16 import os, sys, time, re, getopt, getpass
31 optlist, args = getopt.getopt(sys.argv[1:], 'h?s:u:p:', ['help','h','?'])
Dscript.py21 import os, sys, time, getopt
39 optlist, args = getopt.getopt(sys.argv[1:], 'h?ac:', ['help','h','?'])
/external/selinux/sepolgen/tests/
Dperm_map289 getopt r 1
317 getopt r 1
343 getopt r 1
368 getopt r 1
409 getopt r 1
433 getopt r 1
457 getopt r 1
484 getopt r 1
508 getopt r 1
700 getopt r 1
[all …]
/external/selinux/sepolgen/src/share/
Dperm_map296 getopt r 1
324 getopt r 1
350 getopt r 1
375 getopt r 1
416 getopt r 1
440 getopt r 1
464 getopt r 1
491 getopt r 1
515 getopt r 1
707 getopt r 1
[all …]
/external/mesa3d/src/mapi/glapi/gen/
Dgl_gentable.py34 import sys, getopt
191 (args, trail) = getopt.getopt(sys.argv[1:], "m:f:")
Dgl_SPARC_asm.py30 import sys, getopt
256 (args, trail) = getopt.getopt(sys.argv[1:], "m:f:")
/external/icu/icu4c/source/tools/
Dicu-svnprops-check.py28 import getopt
192 opts, args = getopt.getopt(argv, "fh", ("fix", "help"))
193 except getopt.GetoptError:
/external/skia/bench/
Dbench_compare.py8 import getopt
58 opts, _ = getopt.getopt(sys.argv[1:], "f:o:n:s:ht", ['match='])
59 except getopt.GetoptError, err:

12345678910>>...15