Home
last modified time | relevance | path

Searched refs:maxargs (Results 1 – 8 of 8) sorted by relevance

/external/toybox/lib/
Dargs.c125 int argc, minargs, maxargs; member
240 gof->maxargs = INT_MAX; in parse_optflaglist()
247 else if (*options == '>') gof->maxargs=*(++options)-'0'; in parse_optflaglist()
488 if (toys.optc>gof.maxargs) in get_optflags()
489 help_exit("Max %d argument%s", gof.maxargs, letters[!(gof.maxargs-1)]); in get_optflags()
/external/python/cpython3/Modules/_decimal/tests/
Ddeccheck.py579 maxargs = t.maxop
586 maxself, maxargs = t.maxop[0], t.maxop[1:]
606 for arg in maxargs:
806 maxargs = t.maxop
807 t.rmax = getattr(t.maxcontext, t.funcname)(*maxargs)
810 maxargs = t.maxop[1:]
813 t.rmax = getattr(maxself, t.funcname)(*maxargs)
/external/python/cpython3/Python/
Dgetargs.c2351 int i, posonly, minposonly, maxargs; in _PyArg_UnpackKeywords() local
2381 maxargs = posonly + (int)PyTuple_GET_SIZE(kwtuple); in _PyArg_UnpackKeywords()
2397 if (nargs + nkwargs > maxargs) { in _PyArg_UnpackKeywords()
2404 maxargs, in _PyArg_UnpackKeywords()
2406 (maxargs == 1) ? "" : "s", in _PyArg_UnpackKeywords()
2448 for (i = Py_MAX((int)nargs, posonly); i < maxargs; i++) { in _PyArg_UnpackKeywords()
/external/iproute2/include/
Dutils.h235 int makeargs(char *line, char *argv[], int maxargs);
/external/iproute2/lib/
Dutils.c1143 int makeargs(char *line, char *argv[], int maxargs) in makeargs() argument
1150 if (argc >= (maxargs - 1)) { in makeargs()
/external/marisa-trie/bindings/ruby/
Dmarisa-swig_wrap.cxx1148 const int maxargs, in Ruby_Format_OverloadedError() argument
1154 if ( argc <= maxargs ) msg = "Wrong arguments"; in Ruby_Format_OverloadedError()
/external/python/setuptools/setuptools/_vendor/
Dpyparsing.py1016 def _trim_arity(func, maxargs=2): argument
1064 if limit[0] <= maxargs:
/external/python/setuptools/pkg_resources/_vendor/
Dpyparsing.py1016 def _trim_arity(func, maxargs=2): argument
1064 if limit[0] <= maxargs: