HomeSort by relevance Sort by last modified time
    Searched refs:nargs (Results 126 - 150 of 669) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/python/cpython3/Modules/_ctypes/libffi_msvc/
ffi.c 57 for (i = ecif->cif->nargs, p_arg = ecif->cif->arg_types;
259 for (unsigned i = 0; i < cif->nargs; i++) {
306 arg_area = (void**) alloca (cif->nargs * sizeof (void*));
411 for (i = cif->nargs, p_arg = cif->arg_types; (i != 0); i--, p_arg++)
477 if (cif->nargs >= 1 &&
481 if (cif->nargs >= 2 &&
485 if (cif->nargs >= 3 &&
489 if (cif->nargs >= 4 &&
  /external/python/cpython3/Modules/clinic/
arraymodule.c.h 74 array_array_pop(arrayobject *self, PyObject *const *args, Py_ssize_t nargs)
79 if (!_PyArg_ParseStack(args, nargs, "|n:pop",
111 array_array_insert(arrayobject *self, PyObject *const *args, Py_ssize_t nargs)
117 if (!_PyArg_ParseStack(args, nargs, "nO:insert",
209 array_array_fromfile(arrayobject *self, PyObject *const *args, Py_ssize_t nargs)
215 if (!_PyArg_ParseStack(args, nargs, "On:fromfile",
455 array__array_reconstructor(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
463 if (!_PyArg_ParseStack(args, nargs, "OCiO:_array_reconstructor",
_ssl.c.h 69 _ssl__SSLSocket_getpeercert(PySSLSocket *self, PyObject *const *args, Py_ssize_t nargs)
74 if (!_PyArg_ParseStack(args, nargs, "|p:getpeercert",
328 _ssl__SSLSocket_get_channel_binding(PySSLSocket *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
335 if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
510 _ssl__SSLContext_load_cert_chain(PySSLContext *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
519 if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
544 _ssl__SSLContext_load_verify_locations(PySSLContext *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
553 if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
586 _ssl__SSLContext__wrap_socket(PySSLContext *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
597 if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser
    [all...]
  /external/v8/tools/clang/scripts/
upload_revision.py 49 type=int, nargs=1,
52 type=int, nargs='?', default=1,
  /external/libffi/src/cris/
ffi.c 82 for (i = ecif->cif->nargs, p_arg = ecif->cif->arg_types;
106 uiLocOnStack = 4 * ecif->cif->nargs + struct_count;
173 cif->nargs = ntotalargs;
184 for (ptr = cif->arg_types, i = cif->nargs; i > 0; i--, ptr++)
307 void **avalue = alloca (closure->cif->nargs * sizeof(void *));
313 for (i = 0, doing_regs = 1; i < cif->nargs; i++)
  /external/libffi/src/or1k/
ffi.c 51 for(i=0; i<ecif->cif->nargs; i++)
127 for(i = 0, arg = cif->arg_types, size=0; i < cif->nargs; i++, arg++)
139 if (cif->nargs != cif->nfixedargs)
181 void **avalue = alloca (cif->nargs * sizeof(void *));
196 for (i = 0; i < cif->nargs; i++)
314 cif->nfixedargs = cif->nargs;
  /external/python/cpython2/Modules/_ctypes/libffi/src/cris/
ffi.c 82 for (i = ecif->cif->nargs, p_arg = ecif->cif->arg_types;
106 uiLocOnStack = 4 * ecif->cif->nargs + struct_count;
173 cif->nargs = ntotalargs;
184 for (ptr = cif->arg_types, i = cif->nargs; i > 0; i--, ptr++)
307 void **avalue = alloca (closure->cif->nargs * sizeof(void *));
313 for (i = 0, doing_regs = 1; i < cif->nargs; i++)
  /external/python/cpython3/Modules/_io/clinic/
fileio.c.h 211 _io_FileIO_read(fileio *self, PyObject *const *args, Py_ssize_t nargs)
216 if (!_PyArg_ParseStack(args, nargs, "|O&:read",
283 _io_FileIO_seek(fileio *self, PyObject *const *args, Py_ssize_t nargs)
289 if (!_PyArg_ParseStack(args, nargs, "O|i:seek",
337 _io_FileIO_truncate(fileio *self, PyObject *const *args, Py_ssize_t nargs)
342 if (!_PyArg_UnpackStack(args, nargs, "truncate",
  /external/python/cpython3/Python/clinic/
import.c.h 85 _imp__fix_co_filename(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
91 if (!_PyArg_ParseStack(args, nargs, "O!U:_fix_co_filename",
278 _imp_create_dynamic(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
284 if (!_PyArg_UnpackStack(args, nargs, "create_dynamic",
369 _imp_source_hash(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
377 if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
  /external/webrtc/webrtc/video/
full_stack_plot.py 310 "-c", "--cycle_length", nargs=1, action=CustomAction,
313 "-f", "--field", nargs=1, action=CustomAction,
315 parser.add_argument("-r", "--right", nargs=0, action=CustomAction,
317 parser.add_argument("-d", "--drop", nargs=0, action=CustomAction,
319 parser.add_argument("-o", "--offset", nargs=1, action=CustomAction, type=int,
321 parser.add_argument("-n", "--next", nargs=0, action=CustomAction,
324 "--frames", nargs=1, action=CustomAction, type=int,
326 parser.add_argument("-t", "--title", nargs=1, action=CustomAction,
329 "-O", "--output_filename", nargs=1, action=CustomAction,
333 "files", nargs="+", action=CustomAction
    [all...]
  /external/python/cpython3/Lib/
argparse.py 17 'integers', metavar='int', nargs='+', type=int,
452 if action.nargs == 0:
553 if action.nargs == 0:
584 if action.nargs is None:
586 elif action.nargs == OPTIONAL:
588 elif action.nargs == ZERO_OR_MORE:
590 elif action.nargs == ONE_OR_MORE:
592 elif action.nargs == REMAINDER:
594 elif action.nargs == PARSER:
596 elif action.nargs == SUPPRESS
    [all...]
  /external/curl/packages/OS400/
ccsidcurl.c 729 Curl_formadd_release_local(struct curl_forms * forms, int nargs, int skip)
732 while(nargs--)
733 if(nargs != skip)
734 if(Curl_is_formadd_string(forms[nargs].option))
735 if(forms[nargs].value)
736 free((char *) forms[nargs].value);
800 int nargs; local
835 nargs = 0;
846 if(nargs >= lformlen) {
900 namex = nargs;
    [all...]
  /external/python/cpython2/Lib/test/
test_argparse.py 553 argument_signatures = [Sig('-x', nargs=1)]
564 argument_signatures = [Sig('-x', nargs=3)]
576 Sig('-w', nargs='?'),
577 Sig('-x', nargs='?', const=42),
578 Sig('-y', nargs='?', default='spam'),
579 Sig('-z', nargs='?', type=int, const='42', default='84'),
599 Sig('-x', nargs='*'),
600 Sig('-y', nargs='*', default='spam'),
618 Sig('-x', nargs='+'),
619 Sig('-y', nargs='+', default='spam')
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_argparse.py 550 argument_signatures = [Sig('-x', nargs=1)]
561 argument_signatures = [Sig('-x', nargs=3)]
573 Sig('-w', nargs='?'),
574 Sig('-x', nargs='?', const=42),
575 Sig('-y', nargs='?', default='spam'),
576 Sig('-z', nargs='?', type=int, const='42', default='84'),
596 Sig('-x', nargs='*'),
597 Sig('-y', nargs='*', default='spam'),
615 Sig('-x', nargs='+'),
616 Sig('-y', nargs='+', default='spam'),
    [all...]
  /external/python/cpython3/Lib/test/
test_argparse.py 539 argument_signatures = [Sig('-x', nargs=1)]
550 argument_signatures = [Sig('-x', nargs=3)]
562 Sig('-w', nargs='?'),
563 Sig('-x', nargs='?', const=42),
564 Sig('-y', nargs='?', default='spam'),
565 Sig('-z', nargs='?', type=int, const='42', default='84'),
585 Sig('-x', nargs='*'),
586 Sig('-y', nargs='*', default='spam'),
604 Sig('-x', nargs='+'),
605 Sig('-y', nargs='+', default='spam')
    [all...]
  /external/libffi/src/
java_raw_api.c 52 for (i = cif->nargs-1; i >= 0; i--, at++)
83 for (i = 0; i < cif->nargs; i++, tp++, args++)
126 for (i = 0; i < cif->nargs; i++, tp++, args++)
162 for (i = 0; i < cif->nargs; i++, tp++, args++)
316 void **avalue = (void**) alloca (cif->nargs * sizeof (void*));
  /external/libffi/src/tile/
ffi.c 152 const long num_args = cif->nargs;
290 void ** const avalue = alloca(cif->nargs * sizeof(void *));
296 long i, arg_word, nargs = cif->nargs; local
319 for (i = 0; i < nargs; i++)
  /external/python/cpython2/Modules/_ctypes/libffi/src/
java_raw_api.c 52 for (i = cif->nargs-1; i >= 0; i--, at++)
80 for (i = 0; i < cif->nargs; i++, tp++, args++)
119 for (i = 0; i < cif->nargs; i++, tp++, args++)
152 for (i = 0; i < cif->nargs; i++, tp++, args++)
298 void **avalue = (void**) alloca (cif->nargs * sizeof (void*));
  /external/python/cpython2/Modules/_ctypes/libffi/src/tile/
ffi.c 152 const long num_args = cif->nargs;
290 void ** const avalue = alloca(cif->nargs * sizeof(void *));
296 long i, arg_word, nargs = cif->nargs; local
319 for (i = 0; i < nargs; i++)
  /build/make/tools/
extract_kernel.py 149 nargs='?',
156 nargs='?',
163 nargs='*')
  /external/google-benchmark/tools/
compare.py 80 nargs=1,
88 nargs=1,
93 nargs=argparse.REMAINDER,
104 nargs=1,
110 nargs=1,
118 nargs=1,
123 nargs=argparse.REMAINDER,
135 nargs=1,
141 nargs=1,
149 nargs=1
    [all...]
  /external/libcxx/utils/google-benchmark/tools/
compare.py 80 nargs=1,
88 nargs=1,
93 nargs=argparse.REMAINDER,
104 nargs=1,
110 nargs=1,
118 nargs=1,
123 nargs=argparse.REMAINDER,
135 nargs=1,
141 nargs=1,
149 nargs=1
    [all...]
  /external/libffi/src/alpha/
ffi.c 99 avn = cif->nargs;
217 avalue = alloca(cif->nargs * sizeof(void *));
230 avn = cif->nargs;
  /external/libffi/src/arc/
ffi.c 65 for (i = ecif->cif->nargs, p_arg = ecif->cif->arg_types;
206 arg_area = (void **) alloca (cif->nargs * sizeof (void *));
217 for (i = 0, p_argt = cif->arg_types; i < cif->nargs;
  /external/libffi/src/moxie/
ffi.c 52 for (i = ecif->cif->nargs, p_arg = ecif->cif->arg_types;
184 void **avalue = alloca (cif->nargs * sizeof(void *));
195 for (i = 0; i < cif->nargs; i++)

Completed in 945 milliseconds

1 2 3 4 56 7 8 91011>>