Home
last modified time | relevance | path

Searched refs:optparse (Results 1 – 25 of 263) sorted by relevance

1234567891011

/external/tinyalsa_new/utils/
Doptparse.h54 struct optparse { struct
80 void optparse_init(struct optparse *options, char **argv); argument
92 int optparse(struct optparse *options, const char *optstring);
101 int optparse_long(struct optparse *options,
115 char *optparse_arg(struct optparse *options);
125 optparse_error(struct optparse *options, const char *msg, const char *data) in optparse_error()
142 optparse_init(struct optparse *options, char **argv) in optparse_init()
171 optparse_permute(struct optparse *options, int index) in optparse_permute()
196 optparse(struct optparse *options, const char *optstring) in optparse() function
212 int r = optparse(options, optstring); in optparse()
[all …]
DMakefile26 tinyplay.o: tinyplay.c pcm.h mixer.h asoundlib.h optparse.h
30 tinycap.o: tinycap.c pcm.h mixer.h asoundlib.h optparse.h
34 tinymix.o: tinymix.c pcm.h mixer.h asoundlib.h optparse.h
38 tinypcminfo.o: tinypcminfo.c pcm.h mixer.h asoundlib.h optparse.h
/external/python/cpython3/Doc/library/
Doptparse.rst1 :mod:`optparse` --- Parser for command line options
4 .. module:: optparse
11 **Source code:** :source:`Lib/optparse.py`
14 The :mod:`optparse` module is deprecated and will not be developed further;
19 :mod:`optparse` is a more convenient, flexible, and powerful library for parsing
20 command-line options than the old :mod:`getopt` module. :mod:`optparse` uses a
23 line. :mod:`optparse` allows users to specify options in the conventional
26 Here's an example of using :mod:`optparse` in a simple script::
28 from optparse import OptionParser
44 As it parses the command line, :mod:`optparse` sets attributes of the
[all …]
/external/python/cpython2/Doc/library/
Doptparse.rst1 :mod:`optparse` --- Parser for command line options
4 .. module:: optparse
13 The :mod:`optparse` module is deprecated and will not be developed further;
16 **Source code:** :source:`Lib/optparse.py`
20 :mod:`optparse` is a more convenient, flexible, and powerful library for parsing
21 command-line options than the old :mod:`getopt` module. :mod:`optparse` uses a
24 line. :mod:`optparse` allows users to specify options in the conventional
27 Here's an example of using :mod:`optparse` in a simple script::
29 from optparse import OptionParser
45 As it parses the command line, :mod:`optparse` sets attributes of the
[all …]
/external/autotest/site_utils/bootperf-bin/
Dshowbootdata44 import optparse
61 optparser = optparse.OptionParser(usage=_USAGE, description=_DESCRIPTION)
63 optgroup = optparse.OptionGroup(
82 optgroup = optparse.OptionGroup(optparser, "Event selection")
89 optgroup = optparse.OptionGroup(
/external/chromium-trace/catapult/systrace/profile_chrome/
Dmain.py8 import optparse
31 parser = optparse.OptionParser(description='Record about://tracing profiles '
39 timed_options = optparse.OptionGroup(parser, 'Timed tracing')
45 cont_options = optparse.OptionGroup(parser, 'Continuous tracing')
Dflags.py5 import optparse
9 output_options = optparse.OptionGroup(parser, 'Output options')
/external/autotest/utils/
Dtko_publish.py11 import sys, os, re, optparse
17 options = optparse.Values()
94 parser = optparse.OptionParser(usage=USAGE)
Dreverify_repair_failed.py11 import optparse, os, sys
18 parser = optparse.OptionParser(usage='%prog [options]\n\n' +
/external/skia/tools/
Dtest_pdfs.py14 import optparse
37 parser = optparse.OptionParser(USAGE_STRING % '%prog' + HELP_STRING)
Dadd_codereview_message.py23 import optparse
55 option_parser = optparse.OptionParser(usage=__doc__)
/external/skqp/tools/
Dtest_pdfs.py14 import optparse
37 parser = optparse.OptionParser(USAGE_STRING % '%prog' + HELP_STRING)
Dadd_codereview_message.py23 import optparse
55 option_parser = optparse.OptionParser(usage=__doc__)
/external/libchrome/build/
Dapply_locales.py9 import optparse
13 parser = optparse.OptionParser()
/external/autotest/site_utils/
Dsuite_preprocessor.py14 import optparse, os, sys
20 parser = optparse.OptionParser()
/external/llvm-project/llvm/utils/
Dindirect_calls.py19 import optparse
43 parser = optparse.OptionParser("%prog [options] <binary>")
/external/compiler-rt/lib/sanitizer_common/scripts/
Dlitlint.py10 import optparse
61 parser = optparse.OptionParser()
/external/autotest/tko/parsers/test/
Dexecute_parser.py5 import optparse, sys
11 parser = optparse.OptionParser(usage=usage)
Dinspect_parser_result_store.py8 import optparse, os, sys
15 parser = optparse.OptionParser(usage=usage)
/external/skqp/tools/android/
Dmeasure_fps.py8 import optparse
45 parser = optparse.OptionParser()
/external/skia/tools/android/
Dmeasure_fps.py10 import optparse
47 parser = optparse.OptionParser()
/external/skqp/tools/svg/
Dsvg_downloader.py9 import optparse
28 option_parser = optparse.OptionParser()
/external/llvm-project/compiler-rt/lib/sanitizer_common/scripts/
Dlitlint.py10 import optparse
62 parser = optparse.OptionParser()
/external/chromium-trace/catapult/systrace/bin/
Drun_tests9 import optparse
21 parser = optparse.OptionParser()
/external/python/cpython2/Tools/scripts/
Dhotshotmain.py15 import optparse
41 parser = optparse.OptionParser(__doc__)

1234567891011