/third_party/mesa3d/src/mapi/glapi/gen/ |
H A D | gl_marshal_h.py | 23 import getopt namespace 88 (args, trail) = getopt.getopt(sys.argv[1:], 'm:f:')
|
/third_party/python/Tools/scripts/ |
H A D | rgrep.py | 10 import getopt namespace 16 opts, args = getopt.getopt(sys.argv[1:], "i")
|
H A D | pathfix.py | 33 import getopt namespace 56 opts, args = getopt.getopt(sys.argv[1:], 'i:a:kpn') 57 except getopt.error as msg:
|
H A D | objgraph.py | 24 import getopt namespace 155 optlist, args = getopt.getopt(sys.argv[1:], 'cdu') 156 except getopt.error:
|
H A D | ifdef.py | 30 import getopt namespace 36 opts, args = getopt.getopt(sys.argv[1:], 'D:U:')
|
H A D | cleanfuture.py | 58 import getopt namespace 61 opts, args = getopt.getopt(sys.argv[1:], "drv") 62 except getopt.error as msg:
|
/third_party/python/Lib/distutils/ |
H A D | fancy_getopt.py | 3 Wrapper around the standard getopt module that provides the following 12 import getopt namespace 30 """Wrapper around the standard 'getopt()' module that provides some 76 # And 'option_order' is filled up in 'getopt()'; it records the 135 option table. Called by 'getopt()' before it can do anything 210 def getopt(self, args=None, object=None): member in FancyGetopt 217 'getopt()' just returns 'args'; in both cases, the returned 233 opts, args = getopt.getopt(args, short_opts, self.long_opts) 234 except getopt [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/examples/p2p/ |
H A D | p2p_group_add.py | 9 import getopt namespace 169 options, args = getopt.getopt(sys.argv[1:],"hi:p:f:o:w:") 171 except getopt.GetoptError:
|
H A D | p2p_invite.py | 9 import getopt namespace 151 options, args = getopt.getopt(sys.argv[1:],"hi:o:w:a:") 153 except getopt.GetoptError:
|
H A D | p2p_connect.py | 11 import getopt namespace 236 options, args = getopt.getopt(sys.argv[1:],"hi:m:a:p:g:w:") 238 except getopt.GetoptError:
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/examples/p2p/ |
H A D | p2p_group_add.py | 9 import getopt namespace 169 options, args = getopt.getopt(sys.argv[1:],"hi:p:f:o:w:") 171 except getopt.GetoptError:
|
H A D | p2p_invite.py | 9 import getopt namespace 151 options, args = getopt.getopt(sys.argv[1:],"hi:o:w:a:") 153 except getopt.GetoptError:
|
H A D | p2p_connect.py | 11 import getopt namespace 236 options, args = getopt.getopt(sys.argv[1:],"hi:m:a:p:g:w:") 238 except getopt.GetoptError:
|
/third_party/ltp/pan/ |
H A D | ltp-scanner.c | 123 #include <getopt.h> 142 while ((c = getopt(argc, argv, "D:ehi")) != -1) { in main()
|
/third_party/lame/test/ |
H A D | lametest.py | 5 import getopt namespace 95 optlist, args = getopt.getopt(sys.argv[1:], 'wm') 96 except getopt.error, val:
|
/third_party/python/Tools/i18n/ |
H A D | msgfmt.py | 31 import getopt namespace 220 opts, args = getopt.getopt(sys.argv[1:], 'hVo:', 222 except getopt.error as msg:
|
/third_party/python/Lib/ |
H A D | quopri.py | 197 import getopt namespace 199 opts, args = getopt.getopt(sys.argv[1:], 'td') 200 except getopt.error as msg:
|
H A D | timeit.py | 260 import getopt namespace 262 opts, args = getopt.getopt(args, "n:u:s:r:tcpvh", 266 except getopt.error as err:
|
/third_party/python/Doc/tools/ |
H A D | rstlint.py | 15 import getopt namespace 315 gopts, args = getopt.getopt(argv[1:], 'vfs:i:') 316 except getopt.GetoptError:
|
/third_party/skia/bench/ |
H A D | check_bench_regressions.py | 11 import getopt namespace 200 opts, _ = getopt.getopt(sys.argv[1:], 203 except getopt.GetoptError as err:
|
/third_party/selinux/libselinux/utils/ |
H A D | selabel_partial_match.c | 4 #include <getopt.h> 42 while ((opt = getopt(argc, argv, "f:vp:")) > 0) { in main()
|
/third_party/icu/tools/scripts/ |
H A D | uconfig_vars_test.py | 11 import getopt namespace 184 optlist, _ = getopt.getopt(sys.argv[1:], "pu")
|
/third_party/mesa3d/src/mesa/main/ |
H A D | get_hash_generator.py | 31 import os, sys, getopt namespace 200 (opts, args) = getopt.getopt(sys.argv[1:], "f:")
|
/third_party/libwebsockets/win32port/win32helpers/ |
H A D | getopt.c | 1 /* $NetBSD: getopt.c,v 1.16 1999/12/02 13:15:56 kleink Exp $ */
37 static char sccsid[] = "@(#)getopt.c 8.3 (Berkeley) 4/27/95";
49 __weak_alias(getopt,_getopt);
56 optreset; /* reset getopt */
83 * getopt --
87 getopt(nargc, nargv, ostr)
in getopt() function
|
/third_party/ninja/src/ |
H A D | manifest_parser_perftest.cc | 26 #include "getopt.h" 29 #include "getopt.h" 32 #include <getopt.h> 82 while ((opt = getopt(argc, argv, const_cast<char*>("fh"))) != -1) { in main()
|