/external/python/cpython3/Include/ |
D | modsupport.h | 62 PyAPI_FUNC(int) _PyArg_NoKeywords(const char *funcname, PyObject *kwargs); 64 #define _PyArg_NoKeywords(funcname, kwargs) \ macro 65 ((kwargs) == NULL || _PyArg_NoKeywords((funcname), (kwargs)))
|
/external/python/cpython3/Modules/clinic/ |
D | _bz2module.c.h | 85 !_PyArg_NoKeywords("BZ2Compressor", kwargs)) { in _bz2_BZ2Compressor___init__() 169 !_PyArg_NoKeywords("BZ2Decompressor", kwargs)) { in _bz2_BZ2Decompressor___init__()
|
D | _queuemodule.c.h | 24 !_PyArg_NoKeywords("SimpleQueue", kwargs)) { in simplequeue_new()
|
D | zipimport.c.h | 36 !_PyArg_NoKeywords("zipimporter", kwargs)) { in zipimport_zipimporter___init__()
|
D | _ssl.c.h | 373 !_PyArg_NoKeywords("_SSLContext", kwargs)) { in _ssl__SSLContext() 764 !_PyArg_NoKeywords("MemoryBIO", kwargs)) { in _ssl_MemoryBIO()
|
/external/python/cpython2/Modules/ |
D | operator.c | 470 if (!_PyArg_NoKeywords("itemgetter()", kwds)) in itemgetter_new() 514 if (kw != NULL && !_PyArg_NoKeywords("itemgetter", kw)) in itemgetter_call() 609 if (!_PyArg_NoKeywords("attrgetter()", kwds)) in attrgetter_new() 696 if (kw != NULL && !_PyArg_NoKeywords("attrgetter", kw)) in attrgetter_call() 844 if (kw != NULL && !_PyArg_NoKeywords("methodcaller", kw)) in methodcaller_call()
|
D | itertoolsmodule.c | 692 if (type == &cycle_type && !_PyArg_NoKeywords("cycle()", kwds)) in cycle_new() 843 if (type == &dropwhile_type && !_PyArg_NoKeywords("dropwhile()", kwds)) in dropwhile_new() 987 if (type == &takewhile_type && !_PyArg_NoKeywords("takewhile()", kwds)) in takewhile_new() 1131 if (type == &islice_type && !_PyArg_NoKeywords("islice()", kwds)) in islice_new() 1329 if (type == &starmap_type && !_PyArg_NoKeywords("starmap()", kwds)) in starmap_new() 1460 if (type == &imap_type && !_PyArg_NoKeywords("imap()", kwds)) in imap_new() 1653 if (type == &chain_type && !_PyArg_NoKeywords("chain()", kwds)) in chain_new() 2960 if (type == &ifilter_type && !_PyArg_NoKeywords("ifilter()", kwds)) in ifilter_new() 3105 !_PyArg_NoKeywords("ifilterfalse()", kwds)) in ifilterfalse_new() 3503 if (type == &izip_type && !_PyArg_NoKeywords("izip()", kwds)) in izip_new()
|
/external/python/cpython3/Objects/clinic/ |
D | enumobject.c.h | 58 !_PyArg_NoKeywords("reversed", kwargs)) { in reversed_new()
|
D | tupleobject.c.h | 68 !_PyArg_NoKeywords("tuple", kwargs)) { in tuple_new()
|
D | floatobject.c.h | 173 !_PyArg_NoKeywords("float", kwargs)) { in float_new()
|
D | listobject.c.h | 239 !_PyArg_NoKeywords("list", kwargs)) { in list___init__()
|
/external/python/cpython2/Include/ |
D | modsupport.h | 33 PyAPI_FUNC(int) _PyArg_NoKeywords(const char *funcname, PyObject *kw);
|
/external/python/cpython3/Modules/ |
D | _operator.c | 952 if (!_PyArg_NoKeywords("itemgetter", kwds)) in itemgetter_new() 996 if (!_PyArg_NoKeywords("itemgetter", kw)) in itemgetter_call() 1127 if (!_PyArg_NoKeywords("attrgetter", kwds)) in attrgetter_new() 1286 if (!_PyArg_NoKeywords("attrgetter", kw)) in attrgetter_call() 1530 if (!_PyArg_NoKeywords("methodcaller", kw)) in methodcaller_call()
|
D | itertoolsmodule.c | 894 if (type == &cycle_type && !_PyArg_NoKeywords("cycle", kwds)) in cycle_new() 1095 if (type == &dropwhile_type && !_PyArg_NoKeywords("dropwhile", kwds)) in dropwhile_new() 1263 if (type == &takewhile_type && !_PyArg_NoKeywords("takewhile", kwds)) in takewhile_new() 1431 if (type == &islice_type && !_PyArg_NoKeywords("islice", kwds)) in islice_new() 1685 if (type == &starmap_type && !_PyArg_NoKeywords("starmap", kwds)) in starmap_new() 1843 if (type == &chain_type && !_PyArg_NoKeywords("chain", kwds)) in chain_new() 3792 !_PyArg_NoKeywords("filterfalse", kwds)) in filterfalse_new()
|
D | _randommodule.c | 440 if (type == &Random_Type && !_PyArg_NoKeywords("Random", kwds)) in random_new()
|
/external/python/cpython3/Objects/ |
D | boolobject.c | 48 if (!_PyArg_NoKeywords("bool", kwds)) in bool_new()
|
D | classobject.c | 171 if (!_PyArg_NoKeywords("method", kw)) in method_new() 584 if (!_PyArg_NoKeywords("instancemethod", kw)) in instancemethod_new()
|
D | funcobject.c | 707 if (!_PyArg_NoKeywords("classmethod", kwds)) in cm_init() 888 if (!_PyArg_NoKeywords("staticmethod", kwds)) in sm_init()
|
/external/python/cpython3/Modules/_sqlite/ |
D | row.c | 44 if (!_PyArg_NoKeywords("Row", kwargs)) in pysqlite_row_new()
|
/external/python/cpython2/Modules/_sqlite/ |
D | row.c | 45 if (!_PyArg_NoKeywords("Row()", kwargs)) in pysqlite_row_new()
|
/external/python/cpython2/Objects/ |
D | rangeobject.c | 71 if (!_PyArg_NoKeywords("xrange()", kw)) in range_new()
|
D | funcobject.c | 658 if (!_PyArg_NoKeywords("classmethod", kwds)) in cm_init() 813 if (!_PyArg_NoKeywords("staticmethod", kwds)) in sm_init()
|
D | sliceobject.c | 240 if (!_PyArg_NoKeywords("slice()", kw)) in slice_new()
|
D | enumobject.c | 236 if (type == &PyReversed_Type && !_PyArg_NoKeywords("reversed()", kwds)) in reversed_new()
|
/external/python/cpython3/Modules/_io/clinic/ |
D | bufferedio.c.h | 434 !_PyArg_NoKeywords("BufferedRWPair", kwargs)) { in _io_BufferedRWPair___init__()
|