Home
last modified time | relevance | path

Searched refs:getopt (Results 26 - 50 of 470) sorted by relevance

12345678910>>...19

/third_party/mesa3d/src/mapi/glapi/gen/
H A Dgl_marshal_h.py23 import getopt namespace
88 (args, trail) = getopt.getopt(sys.argv[1:], 'm:f:')
/third_party/python/Tools/scripts/
H A Drgrep.py10 import getopt namespace
16 opts, args = getopt.getopt(sys.argv[1:], "i")
H A Dpathfix.py33 import getopt namespace
56 opts, args = getopt.getopt(sys.argv[1:], 'i:a:kpn')
57 except getopt.error as msg:
H A Dobjgraph.py24 import getopt namespace
155 optlist, args = getopt.getopt(sys.argv[1:], 'cdu')
156 except getopt.error:
H A Difdef.py30 import getopt namespace
36 opts, args = getopt.getopt(sys.argv[1:], 'D:U:')
H A Dcleanfuture.py58 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 Dfancy_getopt.py3 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 Dp2p_group_add.py9 import getopt namespace
169 options, args = getopt.getopt(sys.argv[1:],"hi:p:f:o:w:")
171 except getopt.GetoptError:
H A Dp2p_invite.py9 import getopt namespace
151 options, args = getopt.getopt(sys.argv[1:],"hi:o:w:a:")
153 except getopt.GetoptError:
H A Dp2p_connect.py11 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 Dp2p_group_add.py9 import getopt namespace
169 options, args = getopt.getopt(sys.argv[1:],"hi:p:f:o:w:")
171 except getopt.GetoptError:
H A Dp2p_invite.py9 import getopt namespace
151 options, args = getopt.getopt(sys.argv[1:],"hi:o:w:a:")
153 except getopt.GetoptError:
H A Dp2p_connect.py11 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 Dltp-scanner.c123 #include <getopt.h>
142 while ((c = getopt(argc, argv, "D:ehi")) != -1) { in main()
/third_party/lame/test/
H A Dlametest.py5 import getopt namespace
95 optlist, args = getopt.getopt(sys.argv[1:], 'wm')
96 except getopt.error, val:
/third_party/python/Tools/i18n/
H A Dmsgfmt.py31 import getopt namespace
220 opts, args = getopt.getopt(sys.argv[1:], 'hVo:',
222 except getopt.error as msg:
/third_party/python/Lib/
H A Dquopri.py197 import getopt namespace
199 opts, args = getopt.getopt(sys.argv[1:], 'td')
200 except getopt.error as msg:
H A Dtimeit.py260 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 Drstlint.py15 import getopt namespace
315 gopts, args = getopt.getopt(argv[1:], 'vfs:i:')
316 except getopt.GetoptError:
/third_party/skia/bench/
H A Dcheck_bench_regressions.py11 import getopt namespace
200 opts, _ = getopt.getopt(sys.argv[1:],
203 except getopt.GetoptError as err:
/third_party/selinux/libselinux/utils/
H A Dselabel_partial_match.c4 #include <getopt.h>
42 while ((opt = getopt(argc, argv, "f:vp:")) > 0) { in main()
/third_party/icu/tools/scripts/
H A Duconfig_vars_test.py11 import getopt namespace
184 optlist, _ = getopt.getopt(sys.argv[1:], "pu")
/third_party/mesa3d/src/mesa/main/
H A Dget_hash_generator.py31 import os, sys, getopt namespace
200 (opts, args) = getopt.getopt(sys.argv[1:], "f:")
/third_party/libwebsockets/win32port/win32helpers/
H A Dgetopt.c1 /* $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 Dmanifest_parser_perftest.cc26 #include "getopt.h"
29 #include "getopt.h"
32 #include <getopt.h>
82 while ((opt = getopt(argc, argv, const_cast<char*>("fh"))) != -1) { in main()

Completed in 11 milliseconds

12345678910>>...19