Home
last modified time | relevance | path

Searched refs:_PyObject_FastCallDict (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython3/Include/
Dabstract.h318 PyAPI_FUNC(PyObject *) _PyObject_FastCallDict(PyObject *func,
344 _PyObject_FastCallDict((func), (args), (nargs), NULL)
/external/python/cpython3/Objects/
Ddescrobject.c246 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()
Dabstract.c2274 _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()
Dtypeobject.c7066 result = _PyObject_FastCallDict(func, NULL, 0, kwds); in init_subclass()
/external/python/cpython3/Python/
Dbltinmodule.c161 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()
Derrors.c782 error = _PyObject_FastCallDict(exception, &msg, 1, kwargs); in PyErr_SetImportErrorSubclass()
Dceval.c4715 return _PyObject_FastCallDict(func, NULL, 0, kwargs); in PyEval_CallObjectWithKeywords()
/external/python/cpython3/Modules/
D_csv.c523 return _PyObject_FastCallDict(type, &dialect_inst, 1, kwargs); in _call_dialect()
526 return _PyObject_FastCallDict(type, NULL, 0, kwargs); in _call_dialect()
D_functoolsmodule.c182 ret = _PyObject_FastCallDict(pto->fn, stack, nargs, kwappl); in partial_call()
D_operator.c1127 constructor = _PyObject_FastCallDict(partial, newargs, 2, mc->kwds); in methodcaller_reduce()