Searched refs:_PyObject_FastCall (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython3/Include/cpython/ |
D | abstract.h | 160 _PyObject_FastCall(PyObject *func, PyObject *const *args, Py_ssize_t nargs) in _PyObject_FastCall() function
|
/external/python/cpython3/Modules/ |
D | _elementtree.c | 905 return _PyObject_FastCall(st->deepcopy_obj, stack, 2); in deepcopy() 2871 pi = _PyObject_FastCall(self->pi_factory, stack, 2); in treebuilder_handle_pi() 3427 res = _PyObject_FastCall(self->handle_start_ns, stack, 2); in expat_start_ns_handler() 3596 res = _PyObject_FastCall(self->handle_pi, stack, 2); in expat_pi_handler()
|
D | _functoolsmodule.c | 595 res = _PyObject_FastCall(compare, stack, 2); in keyobject_richcompare()
|
D | _testcapimodule.c | 4844 return _PyObject_FastCall(func, stack, nargs); in test_pyobject_fastcall()
|
/external/python/cpython3/Python/ |
D | pythonrun.c | 751 result = _PyObject_FastCall(hook, stack, 3); in _PyErr_PrintEx()
|
D | ceval.c | 5209 res = _PyObject_FastCall(import_func, stack, 5); in import_name()
|
D | ast.c | 625 id2 = _PyObject_FastCall(c->c_normalize, args, 2); in new_identifier()
|
/external/python/cpython3/Parser/pegen/ |
D | pegen.c | 106 id2 = _PyObject_FastCall(p->normalize, args, 2); in _PyPegen_new_identifier()
|
/external/python/cpython3/Objects/ |
D | typeobject.c | 7702 super = _PyObject_FastCall((PyObject *)&PySuper_Type, args, 2); in init_subclass()
|