Searched refs:numargs (Results 1 – 10 of 10) sorted by relevance
/external/python/cpython2/Doc/extending/ |
D | embedding.rst | 211 static int numargs=0; 217 if(!PyArg_ParseTuple(args, ":numargs")) 219 return Py_BuildValue("i", numargs); 223 {"numargs", emb_numargs, METH_VARARGS, 231 numargs = argc; 234 These two lines initialize the ``numargs`` variable, and make the 235 :func:`emb.numargs` function accessible to the embedded Python interpreter. 241 print "Number of arguments", emb.numargs()
|
/external/python/cpython3/Doc/extending/ |
D | embedding.rst | 217 static int numargs=0; 223 if(!PyArg_ParseTuple(args, ":numargs")) 225 return PyLong_FromLong(numargs); 229 {"numargs", emb_numargs, METH_VARARGS, 248 numargs = argc; 251 These two lines initialize the ``numargs`` variable, and make the 252 :func:`emb.numargs` function accessible to the embedded Python interpreter. 258 print("Number of arguments", emb.numargs())
|
/external/lzma/C/Util/7z/ |
D | 7zMain.c | 348 int MY_CDECL main(int numargs, char *args[]) in main() argument 362 if (numargs == 1) in main() 374 if (numargs < 3) in main()
|
/external/python/cpython2/Modules/ |
D | itertoolsmodule.c | 1142 Py_ssize_t numargs; in islice_new() local 1151 numargs = PyTuple_Size(args); in islice_new() 1152 if (numargs == 2) { in islice_new() 1472 Py_ssize_t numargs, i; in imap_new() local 1477 numargs = PyTuple_Size(args); in imap_new() 1478 if (numargs < 2) { in imap_new() 1484 iters = PyTuple_New(numargs-1); in imap_new() 1488 for (i=1 ; i<numargs ; i++) { in imap_new() 1560 Py_ssize_t numargs, i; in imap_next() local 1562 numargs = PyTuple_Size(lz->iters); in imap_next() [all …]
|
/external/llvm/include/llvm/Option/ |
D | OptParser.td | 111 class MultiArg<list<string> prefixes, string name, int numargs> 113 int NumArgs = numargs;
|
/external/python/cpython3/Python/ |
D | bltinmodule.c | 1129 Py_ssize_t numargs, i; in map_new() local 1134 numargs = PyTuple_Size(args); in map_new() 1135 if (numargs < 2) { in map_new() 1141 iters = PyTuple_New(numargs-1); in map_new() 1145 for (i=1 ; i<numargs ; i++) { in map_new() 1232 Py_ssize_t numargs = PyTuple_GET_SIZE(lz->iters); in map_reduce() local 1233 PyObject *args = PyTuple_New(numargs+1); in map_reduce() 1239 for (i = 0; i<numargs; i++){ in map_reduce()
|
/external/valgrind/coregrind/m_demangle/ |
D | demangle.h | 654 int numargs,
|
/external/python/cpython2/Doc/tools/ |
D | susp-ignored.csv | 6 extending/embedding,,:numargs,"if(!PyArg_ParseTuple(args, "":numargs""))"
|
/external/python/cpython3/Doc/tools/ |
D | susp-ignored.csv | 9 extending/embedding,,:numargs,"if(!PyArg_ParseTuple(args, "":numargs""))"
|
/external/python/cpython3/Modules/ |
D | itertoolsmodule.c | 1408 Py_ssize_t numargs; in islice_new() local 1417 numargs = PyTuple_Size(args); in islice_new() 1418 if (numargs == 2) { in islice_new()
|