OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:gnu_getopt
(Results
1 - 12
of
12
) sorted by null
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
getopt.py
11
gnu_getopt
() -- Like getopt(), but allow option and non-option arguments
22
# Peter Astrand <astrand@lysator.liu.se> added
gnu_getopt
().
24
# TODO for
gnu_getopt
():
34
__all__ = ["GetoptError","error","getopt","
gnu_getopt
"]
94
def
gnu_getopt
(args, shortopts, longopts = []):
function
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
getopt.py
11
gnu_getopt
() -- Like getopt(), but allow option and non-option arguments
22
# Peter Astrand <astrand@lysator.liu.se> added
gnu_getopt
().
24
# TODO for
gnu_getopt
():
34
__all__ = ["GetoptError","error","getopt","
gnu_getopt
"]
94
def
gnu_getopt
(args, shortopts, longopts = []):
function
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_getopt.py
119
opts, args = getopt.
gnu_getopt
(cmdline, 'ab:', ['alpha', 'beta='])
125
opts, args = getopt.
gnu_getopt
(['-a', '-', '-b', '-'], 'ab:', [])
130
opts, args = getopt.
gnu_getopt
(cmdline, '+ab:', ['alpha', 'beta='])
136
opts, args = getopt.
gnu_getopt
(cmdline, 'ab:', ['alpha', 'beta='])