/external/python/cpython2/Objects/ |
D | iterobject.c | 181 result = PyObject_Call(it->it_callable, args, NULL); in calliter_iternext()
|
D | typeobject.c | 1283 retval = PyObject_Call(func, args, NULL); in call_method() 1323 retval = PyObject_Call(func, args, NULL); in call_maybe() 5166 retval = PyObject_Call(func, args, NULL); 5252 res = PyObject_Call(func, args, NULL); 5345 PyObject *temp = PyObject_Call(func, args, NULL); 5484 res = PyObject_Call(func, args, NULL); 5609 res = PyObject_Call(meth, args, kwds); 5750 res = PyObject_Call(func, args, NULL); 5790 res = PyObject_Call(func, args, NULL); 5869 res = PyObject_Call(meth, args, kwds); [all …]
|
D | abstract.c | 2536 PyObject_Call(PyObject *func, PyObject *arg, PyObject *kw) function 2576 retval = PyObject_Call(callable, args, NULL); 2749 tmp = PyObject_Call(callable, args, NULL); 2771 tmp = PyObject_Call(callable, args, NULL);
|
/external/python/cpython3/Modules/ |
D | _functoolsmodule.c | 186 ret = PyObject_Call(pto->fn, args2, kwargs); in partial_call_impl() 822 result = PyObject_Call(self->func, args, kwds); in uncached_lru_cache_wrapper() 853 result = PyObject_Call(self->func, args, kwds); in infinite_lru_cache_wrapper() 957 result = PyObject_Call(self->func, args, kwds); in bounded_lru_cache_wrapper()
|
D | atexitmodule.c | 87 r = PyObject_Call(cb->func, cb->args, cb->kwargs); in atexit_callfuncs()
|
D | _posixsubprocess.c | 488 result = PyObject_Call(preexec_fn, preexec_fn_args_tuple, NULL); in child_exec()
|
D | _lsprof.c | 123 PyObject *o = PyObject_Call(pObj->externalTimer, empty_tuple, NULL); in CallExternalTimer()
|
/external/python/cpython3/Python/ |
D | errors.c | 75 return PyObject_Call(exception, value, NULL); in _PyErr_CreateException() 571 v = PyObject_Call(exc, args, NULL); in PyErr_SetFromErrnoWithFilenameObjects() 674 v = PyObject_Call(exc, args, NULL); in PyErr_SetExcFromWindowsErrWithFilenameObjects()
|
/external/python/cpython2/Modules/ |
D | cPickle.c | 511 junk = PyObject_Call(self->write, self->arg, NULL); in write_other() 687 str = PyObject_Call(self->read, self->arg, NULL); in read_other() 2078 PyObject_Call(getinitargs_func, empty_tuple, NULL))) in save_inst() 2140 state = PyObject_Call(getstate_func, empty_tuple, NULL); in save_inst() 2345 pid = PyObject_Call(f, self->arg, NULL); in save_pers() 2777 t = PyObject_Call(__reduce__, self->arg, NULL); in save() 2795 t = PyObject_Call(__reduce__, in save() 2809 t = PyObject_Call(__reduce__, in save() 4081 pid = PyObject_Call(self->pers_func, self->arg, in load_persid() 4118 pid = PyObject_Call(self->pers_func, self->arg, in load_binpersid() [all …]
|
D | _functoolsmodule.c | 198 ret = PyObject_Call(pto->fn, argappl, kwappl); in partial_call()
|
D | main.c | 197 result = PyObject_Call(runmodule, runargs, NULL); in RunModule()
|
D | _lsprof.c | 133 PyObject *o = PyObject_Call(pObj->externalTimer, empty_tuple, NULL); in CallExternalTimer()
|
/external/python/cpython2/Modules/_sqlite/ |
D | module.c | 74 result = PyObject_Call(factory, args, kwargs); in module_connect()
|
/external/python/cpython3/Modules/_sqlite/ |
D | module.c | 88 result = PyObject_Call(factory, args, kwargs); in module_connect()
|
/external/python/cpython2/Python/ |
D | bltinmodule.c | 308 good = PyObject_Call(func, arg, NULL); in builtin_filter() 1506 return PyObject_Call((PyObject*)&PyFile_Type, args, kwds); in builtin_open() 2132 return PyObject_Call(functools_reduce, args, NULL); in builtin_reduce() 2257 v = PyObject_Call(callable, newargs, kwds); in builtin_sorted()
|
/external/python/cpython2/Doc/data/ |
D | refcounts.dat | 913 PyObject_Call:PyObject*::+1: 914 PyObject_Call:PyObject*:callable_object:0: 915 PyObject_Call:PyObject*:args:0: 916 PyObject_Call:PyObject*:kw:0:
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.0a2.rst | 7 PyObject_Call() and PyCFunction_Call() now raise a SystemError if a function
|
/external/python/cpython2/Include/ |
D | abstract.h | 304 PyAPI_FUNC(PyObject *) PyObject_Call(PyObject *callable_object,
|
/external/python/cpython3/Objects/ |
D | classobject.c | 491 return PyObject_Call(PyMethod_GET_FUNCTION(self), arg, kw); in instancemethod_call()
|
D | call.c | 213 PyObject_Call(PyObject *callable, PyObject *args, PyObject *kwargs) in PyObject_Call() function 826 return PyObject_Call(callable, args, kwargs); in PyEval_CallObjectWithKeywords()
|
D | weakrefobject.c | 466 WRAP_TERNARY(proxy_call, PyObject_Call) in WRAP_BINARY()
|
/external/protobuf/python/google/protobuf/pyext/ |
D | repeated_composite_container.cc | 367 if (PyObject_Call(m.get(), args, kwds) == NULL) in SortPythonMessages()
|
D | repeated_scalar_container.cc | 629 ScopedPyObjectPtr res(PyObject_Call(m.get(), args, kwds)); in Sort()
|
/external/python/cpython3/Include/ |
D | abstract.h | 155 PyAPI_FUNC(PyObject *) PyObject_Call(PyObject *callable,
|
/external/python/cpython3/PC/ |
D | python3.def | 449 PyObject_Call=python37.PyObject_Call
|