Searched refs:_PyObject_FastCallDict (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython3/Include/ |
D | abstract.h | 225 PyAPI_FUNC(PyObject *) _PyObject_FastCallDict( 253 _PyObject_FastCallDict((func), (args), (nargs), NULL) 256 _PyObject_FastCallDict((func), NULL, 0, NULL)
|
/external/python/cpython3/Objects/ |
D | call.c | 84 _PyObject_FastCallDict(PyObject *callable, PyObject *const *args, Py_ssize_t nargs, in _PyObject_FastCallDict() function 823 return _PyObject_FastCallDict(callable, NULL, 0, kwargs); in PyEval_CallObjectWithKeywords() 904 result = _PyObject_FastCallDict(callable, in _PyObject_Call_Prepend()
|
D | typeobject.c | 7319 result = _PyObject_FastCallDict(func, NULL, 0, kwds); in init_subclass()
|
/external/python/cpython3/Modules/ |
D | _csv.c | 516 return _PyObject_FastCallDict(type, &dialect_inst, 1, kwargs); in _call_dialect() 519 return _PyObject_FastCallDict(type, NULL, 0, kwargs); in _call_dialect()
|
D | _operator.c | 1654 constructor = _PyObject_FastCallDict(partial, newargs, 2, mc->kwds); in methodcaller_reduce()
|
D | _functoolsmodule.c | 169 ret = _PyObject_FastCallDict(pto->fn, stack, nargs2, kwargs); in partial_fastcall()
|
D | _testcapimodule.c | 4413 return _PyObject_FastCallDict(func, stack, nargs, kwargs); in test_pyobject_fastcalldict()
|
/external/python/cpython3/Python/ |
D | bltinmodule.c | 227 ns = _PyObject_FastCallDict(prep, pargs, 2, mkw); in builtin___build_class__() 253 cls = _PyObject_FastCallDict(meta, margs, 3, mkw); in builtin___build_class__()
|
D | errors.c | 788 error = _PyObject_FastCallDict(exception, &msg, 1, kwargs); in PyErr_SetImportErrorSubclass()
|