Searched refs:_PyObject_FastCall (Results 1 – 15 of 15) sorted by relevance
/external/python/cpython3/Modules/ |
D | _elementtree.c | 909 return _PyObject_FastCall(st->deepcopy_obj, stack, 2); in deepcopy() 2731 res = _PyObject_FastCall(self->events_append, &event, 1); in treebuilder_append_event() 2897 comment = _PyObject_FastCall(self->comment_factory, &text, 1); in treebuilder_handle_comment() 2937 pi = _PyObject_FastCall(self->pi_factory, stack, 2); in treebuilder_handle_pi() 3239 error = _PyObject_FastCall(st->parseerror_obj, &errmsg, 1); in expat_set_error() 3302 res = _PyObject_FastCall(self->handle_data, &value, 1); in expat_default_handler() 3413 res = _PyObject_FastCall(self->handle_data, &data, 1); in expat_data_handler() 3440 res = _PyObject_FastCall(self->handle_end, &tag, 1); in expat_end_handler() 3495 res = _PyObject_FastCall(self->handle_start_ns, stack, 2); in expat_start_ns_handler() 3527 res = _PyObject_FastCall(self->handle_end_ns, &prefix, 1); in expat_end_ns_handler() [all …]
|
D | _functoolsmodule.c | 555 res = _PyObject_FastCall(compare, stack, 2); in keyobject_richcompare()
|
D | _testcapimodule.c | 4716 return _PyObject_FastCall(func, stack, nargs); in test_pyobject_fastcall()
|
/external/python/cpython3/Objects/ |
D | call.c | 849 result = _PyObject_FastCall(callable, args2, nargs); in _PyObject_FastCall_Prepend() 935 result = _PyObject_FastCall(callable, in _PyObject_CallFunctionVa() 940 result = _PyObject_FastCall(callable, stack, nargs); in _PyObject_CallFunctionVa() 1186 result = _PyObject_FastCall(callable, stack, nargs); in object_vacall()
|
D | moduleobject.c | 740 return _PyObject_FastCall(getattr, stack, 1); in module_getattro()
|
D | descrobject.c | 1495 return _PyObject_FastCall(gs->prop_get, args, 1); in property_descr_get()
|
D | typeobject.c | 1453 return _PyObject_FastCall(func, args, nargs); in call_unbound() 1462 return _PyObject_FastCall(func, args, 1); in call_unbound_noarg() 7452 super = _PyObject_FastCall((PyObject *)&PySuper_Type, args, 2); in init_subclass()
|
D | abstract.c | 181 result = _PyObject_FastCall(meth, stack, 1); in PyObject_GetItem()
|
/external/python/cpython3/Include/cpython/ |
D | abstract.h | 145 _PyObject_FastCall(PyObject *func, PyObject *const *args, Py_ssize_t nargs) in _PyObject_FastCall() function
|
/external/python/cpython3/Python/ |
D | bltinmodule.c | 58 new_base = _PyObject_FastCall(meth, stack, 1); in update_bases() 1284 result = _PyObject_FastCall(lz->func, stack, nargs); in map_next()
|
D | errors.c | 1398 PyObject *res = _PyObject_FastCall(hook, args, 1); in _PyErr_WriteUnraisableMsg()
|
D | pythonrun.c | 713 result = _PyObject_FastCall(hook, stack, 3); in _PyErr_PrintEx()
|
D | sysmodule.c | 847 result = _PyObject_FastCall(callback, stack, 3); in call_trampoline()
|
D | ceval.c | 3361 res = _PyObject_FastCall(exit_func, stack, 3); in _PyEval_EvalFrameDefault() 5179 res = _PyObject_FastCall(import_func, stack, 5); in import_name()
|
D | ast.c | 632 id2 = _PyObject_FastCall(c->c_normalize, args, 2); in new_identifier()
|