Home
last modified time | relevance | path

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

12345678910>>...396

/dports/mail/filtermail/filtermail-0.8.6/doc/api/latex/
H A Dgetopt_8h.tex2 \label{getopt_8h}\index{getopt.\+h@{getopt.\+h}}
60 \index{getopt.\+h@{getopt.\+h}!\+\_\+getopt\+\_\+internal@{\+\_\+getopt\+\_\+internal}}
61 \index{\+\_\+getopt\+\_\+internal@{\+\_\+getopt\+\_\+internal}!getopt.\+h@{getopt.\+h}}
67 \index{getopt.\+h@{getopt.\+h}!getopt@{getopt}}
68 \index{getopt@{getopt}!getopt.\+h@{getopt.\+h}}
74 \index{getopt.\+h@{getopt.\+h}!getopt\+\_\+long@{getopt\+\_\+long}}
75 \index{getopt\+\_\+long@{getopt\+\_\+long}!getopt.\+h@{getopt.\+h}}
81 \index{getopt.\+h@{getopt.\+h}!getopt\+\_\+long\+\_\+only@{getopt\+\_\+long\+\_\+only}}
82 \index{getopt\+\_\+long\+\_\+only@{getopt\+\_\+long\+\_\+only}!getopt.\+h@{getopt.\+h}}
91 \index{getopt.\+h@{getopt.\+h}!optarg@{optarg}}
[all …]
H A Dgetopt_8c.tex2 \label{getopt_8c}\index{getopt.\+c@{getopt.\+c}}
54 \index{getopt.\+c@{getopt.\+c}!\+\_\+@{\+\_\+}}
55 \index{\+\_\+@{\+\_\+}!getopt.\+c@{getopt.\+c}}
64 \index{getopt.\+c@{getopt.\+c}!const@{const}}
65 \index{const@{const}!getopt.\+c@{getopt.\+c}}
99 \index{getopt.\+c@{getopt.\+c}!\+\_\+getopt\+\_\+internal@{\+\_\+getopt\+\_\+internal}}
100 \index{\+\_\+getopt\+\_\+internal@{\+\_\+getopt\+\_\+internal}!getopt.\+c@{getopt.\+c}}
118 \index{getopt.\+c@{getopt.\+c}!getopt@{getopt}}
119 \index{getopt@{getopt}!getopt.\+c@{getopt.\+c}}
130 \index{getopt.\+c@{getopt.\+c}!\+\_\+\+\_\+getopt\+\_\+initialized@{\+\_\+\+\_\+getopt\+\_\+initial…
[all …]
/dports/devel/R-cran-getopt/getopt/tests/testthat/
H A Dtest-getopt.R25 expect_equal(sort_list(getopt(spec, c('-de'))),
26 sort_list(getopt(spec, c('-ed'))))
27 expect_equal(sort_list(getopt(spec, c('-de'))),
29 expect_equal(sort_list(getopt(spec, c('-de', '1'))),
31 expect_equal(sort_list(getopt(spec, c('--verbose'))),
37 expect_equal(sort_list(getopt(spec, c('--mean=5'))),
66 opt <- getopt(spec, c("-c", "-55"))
71 opt <- getopt(spec, c("-c", "-55.0"))
79 expect_warning(getopt(spec, c("--number=")))
86 expect_equal(getopt(spec, c("-c", "5"))$count, 5)
[all …]
/dports/databases/py-sqlite3/Python-3.8.12/Lib/test/
H A Dtest_getopt.py7 import getopt
25 self.assertTrue(getopt.short_has_arg('a', 'a:'))
26 self.assertFalse(getopt.short_has_arg('a', 'a'))
27 self.assertError(getopt.short_has_arg, 'a', 'b')
43 self.assertError(getopt.long_has_args, 'abc', [])
47 opts, args = getopt.do_shorts([], 'a', 'a', [])
104 opts, args = getopt.getopt(cmdline, 'a:b', ['alpha=', 'beta'])
112 self.assertError(getopt.getopt, cmdline, 'a:b', ['alpha', 'beta'])
177 longopts, shortopts = getopt.getopt(['--help='], '', ['help='])
179 longopts, shortopts = getopt.getopt(['--help=x'], '', ['help='])
[all …]
/dports/databases/py-gdbm/Python-3.8.12/Lib/test/
H A Dtest_getopt.py7 import getopt
25 self.assertTrue(getopt.short_has_arg('a', 'a:'))
26 self.assertFalse(getopt.short_has_arg('a', 'a'))
27 self.assertError(getopt.short_has_arg, 'a', 'b')
43 self.assertError(getopt.long_has_args, 'abc', [])
47 opts, args = getopt.do_shorts([], 'a', 'a', [])
104 opts, args = getopt.getopt(cmdline, 'a:b', ['alpha=', 'beta'])
112 self.assertError(getopt.getopt, cmdline, 'a:b', ['alpha', 'beta'])
177 longopts, shortopts = getopt.getopt(['--help='], '', ['help='])
179 longopts, shortopts = getopt.getopt(['--help=x'], '', ['help='])
[all …]
/dports/lang/python-tools/Python-3.8.12/Lib/test/
H A Dtest_getopt.py7 import getopt
25 self.assertTrue(getopt.short_has_arg('a', 'a:'))
26 self.assertFalse(getopt.short_has_arg('a', 'a'))
27 self.assertError(getopt.short_has_arg, 'a', 'b')
43 self.assertError(getopt.long_has_args, 'abc', [])
47 opts, args = getopt.do_shorts([], 'a', 'a', [])
104 opts, args = getopt.getopt(cmdline, 'a:b', ['alpha=', 'beta'])
112 self.assertError(getopt.getopt, cmdline, 'a:b', ['alpha', 'beta'])
177 longopts, shortopts = getopt.getopt(['--help='], '', ['help='])
179 longopts, shortopts = getopt.getopt(['--help=x'], '', ['help='])
[all …]
/dports/lang/python38/Python-3.8.12/Lib/test/
H A Dtest_getopt.py7 import getopt
25 self.assertTrue(getopt.short_has_arg('a', 'a:'))
26 self.assertFalse(getopt.short_has_arg('a', 'a'))
27 self.assertError(getopt.short_has_arg, 'a', 'b')
43 self.assertError(getopt.long_has_args, 'abc', [])
47 opts, args = getopt.do_shorts([], 'a', 'a', [])
104 opts, args = getopt.getopt(cmdline, 'a:b', ['alpha=', 'beta'])
112 self.assertError(getopt.getopt, cmdline, 'a:b', ['alpha', 'beta'])
177 longopts, shortopts = getopt.getopt(['--help='], '', ['help='])
179 longopts, shortopts = getopt.getopt(['--help=x'], '', ['help='])
[all …]
/dports/lang/python39/Python-3.9.9/Lib/test/
H A Dtest_getopt.py7 import getopt
25 self.assertTrue(getopt.short_has_arg('a', 'a:'))
26 self.assertFalse(getopt.short_has_arg('a', 'a'))
27 self.assertError(getopt.short_has_arg, 'a', 'b')
43 self.assertError(getopt.long_has_args, 'abc', [])
47 opts, args = getopt.do_shorts([], 'a', 'a', [])
104 opts, args = getopt.getopt(cmdline, 'a:b', ['alpha=', 'beta'])
112 self.assertError(getopt.getopt, cmdline, 'a:b', ['alpha', 'beta'])
177 longopts, shortopts = getopt.getopt(['--help='], '', ['help='])
179 longopts, shortopts = getopt.getopt(['--help=x'], '', ['help='])
[all …]
/dports/lang/python37/Python-3.7.12/Lib/test/
H A Dtest_getopt.py7 import getopt
25 self.assertTrue(getopt.short_has_arg('a', 'a:'))
26 self.assertFalse(getopt.short_has_arg('a', 'a'))
27 self.assertError(getopt.short_has_arg, 'a', 'b')
43 self.assertError(getopt.long_has_args, 'abc', [])
47 opts, args = getopt.do_shorts([], 'a', 'a', [])
104 opts, args = getopt.getopt(cmdline, 'a:b', ['alpha=', 'beta'])
112 self.assertError(getopt.getopt, cmdline, 'a:b', ['alpha', 'beta'])
177 longopts, shortopts = getopt.getopt(['--help='], '', ['help='])
179 longopts, shortopts = getopt.getopt(['--help=x'], '', ['help='])
[all …]
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Lib/test/
H A Dtest_getopt.py7 import getopt
25 self.assertTrue(getopt.short_has_arg('a', 'a:'))
26 self.assertFalse(getopt.short_has_arg('a', 'a'))
27 self.assertError(getopt.short_has_arg, 'a', 'b')
43 self.assertError(getopt.long_has_args, 'abc', [])
47 opts, args = getopt.do_shorts([], 'a', 'a', [])
104 opts, args = getopt.getopt(cmdline, 'a:b', ['alpha=', 'beta'])
112 self.assertError(getopt.getopt, cmdline, 'a:b', ['alpha', 'beta'])
177 longopts, shortopts = getopt.getopt(['--help='], '', ['help='])
179 longopts, shortopts = getopt.getopt(['--help=x'], '', ['help='])
[all …]
/dports/lang/python310/Python-3.10.1/Lib/test/
H A Dtest_getopt.py8 import getopt
26 self.assertTrue(getopt.short_has_arg('a', 'a:'))
27 self.assertFalse(getopt.short_has_arg('a', 'a'))
28 self.assertError(getopt.short_has_arg, 'a', 'b')
44 self.assertError(getopt.long_has_args, 'abc', [])
48 opts, args = getopt.do_shorts([], 'a', 'a', [])
105 opts, args = getopt.getopt(cmdline, 'a:b', ['alpha=', 'beta'])
113 self.assertError(getopt.getopt, cmdline, 'a:b', ['alpha', 'beta'])
178 longopts, shortopts = getopt.getopt(['--help='], '', ['help='])
180 longopts, shortopts = getopt.getopt(['--help=x'], '', ['help='])
[all …]
/dports/lang/python-legacy/Python-2.7.18/Lib/test/
H A Dtest_getopt.py7 import getopt
25 self.assertTrue(getopt.short_has_arg('a', 'a:'))
26 self.assertFalse(getopt.short_has_arg('a', 'a'))
27 self.assertError(getopt.short_has_arg, 'a', 'b')
43 self.assertError(getopt.long_has_args, 'abc', [])
47 opts, args = getopt.do_shorts([], 'a', 'a', [])
104 opts, args = getopt.getopt(cmdline, 'a:b', ['alpha=', 'beta'])
112 self.assertError(getopt.getopt, cmdline, 'a:b', ['alpha', 'beta'])
177 longopts, shortopts = getopt.getopt(['--help='], '', ['help='])
179 longopts, shortopts = getopt.getopt(['--help=x'], '', ['help='])
[all …]
/dports/lang/python27/Python-2.7.18/Lib/test/
H A Dtest_getopt.py7 import getopt
25 self.assertTrue(getopt.short_has_arg('a', 'a:'))
26 self.assertFalse(getopt.short_has_arg('a', 'a'))
27 self.assertError(getopt.short_has_arg, 'a', 'b')
43 self.assertError(getopt.long_has_args, 'abc', [])
47 opts, args = getopt.do_shorts([], 'a', 'a', [])
104 opts, args = getopt.getopt(cmdline, 'a:b', ['alpha=', 'beta'])
112 self.assertError(getopt.getopt, cmdline, 'a:b', ['alpha', 'beta'])
177 longopts, shortopts = getopt.getopt(['--help='], '', ['help='])
179 longopts, shortopts = getopt.getopt(['--help=x'], '', ['help='])
[all …]
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_getopt.py7 import getopt
25 self.assertTrue(getopt.short_has_arg('a', 'a:'))
26 self.assertFalse(getopt.short_has_arg('a', 'a'))
27 self.assertError(getopt.short_has_arg, 'a', 'b')
43 self.assertError(getopt.long_has_args, 'abc', [])
47 opts, args = getopt.do_shorts([], 'a', 'a', [])
104 opts, args = getopt.getopt(cmdline, 'a:b', ['alpha=', 'beta'])
112 self.assertError(getopt.getopt, cmdline, 'a:b', ['alpha', 'beta'])
177 longopts, shortopts = getopt.getopt(['--help='], '', ['help='])
179 longopts, shortopts = getopt.getopt(['--help=x'], '', ['help='])
[all …]
/dports/lang/python311/Python-3.11.0a3/Lib/test/
H A Dtest_getopt.py8 import getopt
26 self.assertTrue(getopt.short_has_arg('a', 'a:'))
27 self.assertFalse(getopt.short_has_arg('a', 'a'))
28 self.assertError(getopt.short_has_arg, 'a', 'b')
44 self.assertError(getopt.long_has_args, 'abc', [])
48 opts, args = getopt.do_shorts([], 'a', 'a', [])
105 opts, args = getopt.getopt(cmdline, 'a:b', ['alpha=', 'beta'])
113 self.assertError(getopt.getopt, cmdline, 'a:b', ['alpha', 'beta'])
178 longopts, shortopts = getopt.getopt(['--help='], '', ['help='])
180 longopts, shortopts = getopt.getopt(['--help=x'], '', ['help='])
[all …]
/dports/devel/py-mypy/mypy-0.910/test-data/stdlib-samples/3.2/test/
H A Dtest_getopt.py7 import getopt
28 self.assertTrue(getopt.short_has_arg('a', 'a:'))
29 self.assertFalse(getopt.short_has_arg('a', 'a'))
30 self.assertError(getopt.short_has_arg, 'a', 'b')
46 self.assertError(getopt.long_has_args, 'abc', [])
50 opts, args = getopt.do_shorts([], 'a', 'a', [])
107 opts, args = getopt.getopt(cmdline, 'a:b', ['alpha=', 'beta'])
115 self.assertError(getopt.getopt, cmdline, 'a:b', ['alpha', 'beta'])
180 longopts, shortopts = getopt.getopt(['--help='], '', ['help='])
182 longopts, shortopts = getopt.getopt(['--help=x'], '', ['help='])
[all …]
/dports/multimedia/quodlibet/quodlibet-4.3.0/quodlibet/packages/raven/utils/
H A Dconf.py19 def getopt(key, default=None): function
31 def getopt(key, default=None): function
42 options.setdefault('timeout', getopt('timeout'))
43 options.setdefault('name', getopt('name'))
47 options.setdefault('site', getopt('site'))
48 options.setdefault('processors', getopt('processors'))
51 options.setdefault('context', getopt('context'))
52 options.setdefault('tags', getopt('tags'))
53 options.setdefault('release', getopt('release'))
54 options.setdefault('repos', getopt('repos'))
[all …]
/dports/devel/py-raven/raven-python-6.10.0/raven/utils/
H A Dconf.py19 def getopt(key, default=None): function
31 def getopt(key, default=None): function
42 options.setdefault('timeout', getopt('timeout'))
43 options.setdefault('name', getopt('name'))
47 options.setdefault('site', getopt('site'))
48 options.setdefault('processors', getopt('processors'))
51 options.setdefault('context', getopt('context'))
52 options.setdefault('tags', getopt('tags'))
53 options.setdefault('release', getopt('release'))
54 options.setdefault('repos', getopt('repos'))
[all …]
/dports/sysutils/heirloom/heirloom-070715/getopt/
H A DMakefile.mk1 all: getopt
3 getopt: getopt.o
4 $(LD) $(LDFLAGS) getopt.o $(LCOMMON) $(LIBS) -o getopt
6 getopt.o: getopt.c
7 $(CC) $(CFLAGS) $(CPPFLAGS) $(XO5FL) $(LARGEF) $(ICOMMON) -c getopt.c
10 $(UCBINST) -c getopt $(ROOT)$(DEFBIN)/getopt
11 $(STRIP) $(ROOT)$(DEFBIN)/getopt
12 $(MANINST) -c -m 644 getopt.1 $(ROOT)$(MANDIR)/man1/getopt.1
15 rm -f getopt getopt.o core log *~
/dports/security/pkcs11-tools/pkcs11-tools-2.5.0/.gnulib/modules/
H A Dgetopt-posix5 lib/getopt.c
7 lib/getopt.in.h
8 lib/getopt-cdefs.in.h
9 lib/getopt-core.h
10 lib/getopt-ext.h
11 lib/getopt-pfx-core.h
12 lib/getopt-pfx-ext.h
14 m4/getopt.m4
39 getopt.h: getopt.in.h $(top_builddir)/config.status $(ARG_NONNULL_H)
53 getopt-cdefs.h: getopt-cdefs.in.h $(top_builddir)/config.status
[all …]
/dports/misc/getopt/getopt-1.1.6/po/
H A Dru.po21 #: getopt.c:228
26 #: getopt.c:297
30 #: getopt.c:318
34 #: getopt.c:325
42 #: getopt.c:331
50 #: getopt.c:332
55 #: getopt.c:333
62 #: getopt.c:334
95 #: getopt.c:390 getopt.c:449
159 #: gnu/getopt.c:724 gnu/getopt.c:897
[all …]
/dports/net/gnu-radius/radius-1.6.1/m4/
H A Dgetopt.m41 # getopt.m4 serial 14
7 # The getopt module assume you want GNU getopt, with getopt_long etc,
9 # always include <getopt.h> for the getopt prototypes.
13 AC_LIBOBJ([getopt])
21 GETOPT_H=getopt.h
31 AC_CHECK_HEADERS([getopt.h], [], [GETOPT_H=getopt.h])
41 AC_CHECK_DECL([optreset], [GETOPT_H=getopt.h], [], [#include <getopt.h>])
49 [AC_LANG_PROGRAM([[#include <getopt.h>]],
64 [#include <getopt.h>])])])
66 GETOPT_H=getopt.h
[all …]
/dports/net-p2p/microdc2/microdc2-0.15.6/m4/
H A Dgetopt.m41 # getopt.m4 serial 11
7 # The getopt module assume you want GNU getopt, with getopt_long etc,
9 # always include <getopt.h> for the getopt prototypes.
13 AC_LIBOBJ([getopt])
21 GETOPT_H=getopt.h
31 AC_CHECK_HEADERS([getopt.h], [], [GETOPT_H=getopt.h])
41 AC_CHECK_DECL([optreset], [GETOPT_H=getopt.h], [], [#include <getopt.h>])
49 [AC_LANG_PROGRAM([#include <getopt.h>],
64 [#include <getopt.h>])])])
66 GETOPT_H=getopt.h
[all …]
/dports/devel/cvs-devel/cvs-1.12.13/m4/
H A Dgetopt.m41 # getopt.m4 serial 11
7 # The getopt module assume you want GNU getopt, with getopt_long etc,
9 # always include <getopt.h> for the getopt prototypes.
13 AC_LIBOBJ([getopt])
21 GETOPT_H=getopt.h
31 AC_CHECK_HEADERS([getopt.h], [], [GETOPT_H=getopt.h])
41 AC_CHECK_DECL([optreset], [GETOPT_H=getopt.h], [], [#include <getopt.h>])
49 [AC_LANG_PROGRAM([#include <getopt.h>],
64 [#include <getopt.h>])])])
66 GETOPT_H=getopt.h
[all …]
/dports/sysutils/tmpwatch/tmpwatch-2.11/m4/
H A Dgetopt.m41 # getopt.m4 serial 13
7 # The getopt module assume you want GNU getopt, with getopt_long etc,
9 # always include <getopt.h> for the getopt prototypes.
13 AC_LIBOBJ([getopt])
21 GETOPT_H=getopt.h
31 AC_CHECK_HEADERS([getopt.h], [], [GETOPT_H=getopt.h])
41 AC_CHECK_DECL([optreset], [GETOPT_H=getopt.h], [], [#include <getopt.h>])
49 [AC_LANG_PROGRAM([#include <getopt.h>],
64 [#include <getopt.h>])])])
66 GETOPT_H=getopt.h
[all …]

12345678910>>...396