/third_party/python/Modules/ |
H A D | _functoolsmodule.c | 324 PyObject *res = PyObject_Call(pto->fn, args2, kwargs2); in partial_call() 700 if ((result = PyObject_Call(func, args, NULL)) == NULL) { in functools_reduce() 886 result = PyObject_Call(self->func, args, kwds); in uncached_lru_cache_wrapper() 917 result = PyObject_Call(self->func, args, kwds); in infinite_lru_cache_wrapper() 1021 result = PyObject_Call(self->func, args, kwds); in bounded_lru_cache_wrapper() 1029 during the PyObject_Call(). Since the link update is already in bounded_lru_cache_wrapper()
|
H A D | atexitmodule.c | 98 PyObject *res = PyObject_Call(cb->func, cb->args, cb->kwargs); in atexit_callfuncs()
|
H A D | main.c | 300 result = PyObject_Call(runmodule, runargs, NULL); in pymain_run_module()
|
H A D | _posixsubprocess.c | 678 result = PyObject_Call(preexec_fn, preexec_fn_args_tuple, NULL); in child_exec()
|
H A D | _operator.c | 1657 result = PyObject_Call(method, mc->args, mc->kwds); in methodcaller_call()
|
H A D | _threadmodule.c | 1092 PyObject *res = PyObject_Call(boot->func, boot->args, boot->kwargs); in thread_run()
|
H A D | timemodule.c | 925 result = PyObject_Call(func, args, NULL);
|
H A D | _zoneinfo.c | 597 dt = PyObject_Call(replace, args, kwargs); in zoneinfo_fromutc()
|
H A D | pyexpat.c | 220 res = PyObject_Call(func, args, NULL); in call_with_frame()
|
H A D | _tkinter.c | 2252 res = PyObject_Call(data->func, args, NULL); in PythonCmd()
|
H A D | itertoolsmodule.c | 1928 result = PyObject_Call(lz->func, args, NULL); in starmap_next()
|
/third_party/python/Python/ |
H A D | errors.c | 90 exc = PyObject_Call(exception_type, value, NULL); in _PyErr_CreateException() 839 v = PyObject_Call(exc, args, NULL); in PyErr_SetFromErrnoWithFilenameObjects() 936 v = PyObject_Call(exc, args, NULL); in PyErr_SetExcFromWindowsErrWithFilenameObjects()
|
H A D | codecs.c | 421 result = PyObject_Call(encoder, args, NULL); in _PyCodec_EncodeInternal() 467 result = PyObject_Call(decoder, args, NULL); in _PyCodec_DecodeInternal()
|
H A D | ceval.c | 6895 PyObject *result = PyObject_Call(func, args, NULL); 7329 C_TRACE(result, PyObject_Call(func, callargs, kwdict)); 7357 return PyObject_Call(func, callargs, kwdict);
|
/third_party/python/Include/ |
H A D | abstract.h | 158 PyAPI_FUNC(PyObject *) PyObject_Call(PyObject *callable,
|
/third_party/python/Objects/ |
H A D | classobject.c | 439 return PyObject_Call(PyInstanceMethod_GET_FUNCTION(self), arg, kw); in instancemethod_call()
|
H A D | funcobject.c | 1125 return PyObject_Call(sm->sm_callable, args, kwargs); in sm_call()
|
H A D | genericaliasobject.c | 583 PyObject *obj = PyObject_Call(alias->origin, args, kwds); in ga_call()
|
H A D | call.c | 319 /* PyObject_Call() must not be called with an exception set, in _PyObject_Call() 352 PyObject_Call(PyObject *callable, PyObject *args, PyObject *kwargs) in PyObject_Call() function
|
H A D | weakrefobject.c | 473 WRAP_TERNARY(proxy_call, PyObject_Call)
|
/third_party/protobuf/python/google/protobuf/pyext/ |
H A D | repeated_composite_container.cc | 409 if (ScopedPyObjectPtr(PyObject_Call(m.get(), args, kwds)) == NULL) in Subscript()
|
H A D | repeated_scalar_container.cc | 625 ScopedPyObjectPtr res(PyObject_Call(m.get(), args, kwds)); in Subscript()
|
/third_party/python/PC/ |
H A D | python3dll.c | 433 EXPORT_FUNC(PyObject_Call)
|
/third_party/python/Modules/_ctypes/ |
H A D | callproc.c | 1875 result = PyObject_Call(meth, state, NULL); in unpickle()
|
/third_party/skia/third_party/externals/libwebp/swig/ |
H A D | libwebp_python_wrap.c | 2511 inst = PyObject_Call(newraw, data->newargs, NULL); in SWIG_Python_NewShadowInstance()
|