Home
last modified time | relevance | path

Searched refs:PyVectorcall_Call (Results 1 – 9 of 9) sorted by relevance

/third_party/python/Include/cpython/
Dabstract.h146 PyAPI_FUNC(PyObject *) PyVectorcall_Call(PyObject *callable, PyObject *tuple, PyObject *dict);
/third_party/python/Objects/
Dcall.c229 PyVectorcall_Call(PyObject *callable, PyObject *tuple, PyObject *kwargs) in PyVectorcall_Call() function
290 return PyVectorcall_Call(callable, args, kwargs); in _PyObject_Call()
Dclassobject.c346 PyVectorcall_Call, /* tp_call */
Dmethodobject.c533 return PyVectorcall_Call(func, args, kwargs); in cfunction_call()
Dfuncobject.c700 PyVectorcall_Call, /* tp_call */
Ddescrobject.c705 PyVectorcall_Call, /* tp_call */
/third_party/python/Doc/c-api/
Dcall.rst52 :c:member:`~PyTypeObject.tp_call` to :c:func:`PyVectorcall_Call`.
165 .. c:function:: PyObject* PyVectorcall_Call(PyObject *callable, PyObject *tuple, PyObject *dict)
Dtypeobj.rst721 This can be done by setting *tp_call* to :c:func:`PyVectorcall_Call`.
748 :c:func:`PyVectorcall_Call` is explicitly called.
/third_party/python/Modules/
D_testcapimodule.c5114 return PyVectorcall_Call(func, argstuple, kwargs); in test_pyvectorcall_call()
6518 .tp_call = PyVectorcall_Call,
6558 .tp_call = PyVectorcall_Call,