Searched refs:_PyObject_FastCallDict (Results 1 – 10 of 10) sorted by relevance
/external/python/cpython3/Include/ |
D | abstract.h | 318 PyAPI_FUNC(PyObject *) _PyObject_FastCallDict(PyObject *func, 344 _PyObject_FastCallDict((func), (args), (nargs), NULL)
|
/external/python/cpython3/Objects/ |
D | descrobject.c | 246 result = _PyObject_FastCallDict(func, stack, argc - 1, kwds); in methoddescr_call() 294 result = _PyObject_FastCallDict(func, stack, argc - 1, kwds); in classmethoddescr_call() 334 result = _PyObject_FastCallDict(func, stack, argc - 1, kwds); in wrapperdescr_call()
|
D | abstract.c | 2274 _PyObject_FastCallDict(PyObject *func, PyObject **args, Py_ssize_t nargs, in _PyObject_FastCallDict() function 2358 result = _PyObject_FastCallDict(func, in _PyObject_Call_Prepend() 2480 result = _PyObject_FastCallDict(func, stack, nargs, kwdict); in _PyObject_FastCallKeywords()
|
D | typeobject.c | 7066 result = _PyObject_FastCallDict(func, NULL, 0, kwds); in init_subclass()
|
/external/python/cpython3/Python/ |
D | bltinmodule.c | 161 ns = _PyObject_FastCallDict(prep, pargs, 2, mkw); in builtin___build_class__() 175 cls = _PyObject_FastCallDict(meta, margs, 3, mkw); in builtin___build_class__() 2148 v = _PyObject_FastCallDict(callable, newargs, nargs, kwds); in builtin_sorted()
|
D | errors.c | 782 error = _PyObject_FastCallDict(exception, &msg, 1, kwargs); in PyErr_SetImportErrorSubclass()
|
D | ceval.c | 4715 return _PyObject_FastCallDict(func, NULL, 0, kwargs); in PyEval_CallObjectWithKeywords()
|
/external/python/cpython3/Modules/ |
D | _csv.c | 523 return _PyObject_FastCallDict(type, &dialect_inst, 1, kwargs); in _call_dialect() 526 return _PyObject_FastCallDict(type, NULL, 0, kwargs); in _call_dialect()
|
D | _functoolsmodule.c | 182 ret = _PyObject_FastCallDict(pto->fn, stack, nargs, kwappl); in partial_call()
|
D | _operator.c | 1127 constructor = _PyObject_FastCallDict(partial, newargs, 2, mc->kwds); in methodcaller_reduce()
|