/third_party/boost/boost/python/ |
D | object_core.hpp | 371 PyObject *result = PyObject_Call(get_managed_object(self, boost::python::tag), in operator ()() 383 PyObject *result = PyObject_Call(get_managed_object(self, boost::python::tag), in operator ()()
|
/third_party/python/Modules/ |
D | _functoolsmodule.c | 323 PyObject *res = PyObject_Call(pto->fn, args2, kwargs2); in partial_call() 699 if ((result = PyObject_Call(func, args, NULL)) == NULL) { in functools_reduce() 885 result = PyObject_Call(self->func, args, kwds); in uncached_lru_cache_wrapper() 916 result = PyObject_Call(self->func, args, kwds); in infinite_lru_cache_wrapper() 1020 result = PyObject_Call(self->func, args, kwds); in bounded_lru_cache_wrapper()
|
D | atexitmodule.c | 98 PyObject *res = PyObject_Call(cb->func, cb->args, cb->kwargs); in atexit_callfuncs()
|
D | main.c | 293 result = PyObject_Call(runmodule, runargs, NULL); in pymain_run_module()
|
D | _posixsubprocess.c | 577 result = PyObject_Call(preexec_fn, preexec_fn_args_tuple, NULL); in child_exec()
|
D | _threadmodule.c | 1090 PyObject *res = PyObject_Call(boot->func, boot->args, boot->kwargs); in thread_run()
|
D | _operator.c | 1570 result = PyObject_Call(method, mc->args, mc->kwds); in methodcaller_call()
|
D | timemodule.c | 902 result = PyObject_Call(func, args, NULL);
|
/third_party/python/Doc/c-api/ |
D | call.rst | 29 To call an object, use :c:func:`PyObject_Call` or other 46 (rather than using :c:func:`PyObject_Call`). 197 | :c:func:`PyObject_Call` | ``PyObject *`` | tuple | dict/``NULL`` | 225 .. c:function:: PyObject* PyObject_Call(PyObject *callable, PyObject *args, PyObject *kwargs)
|
/third_party/python/Modules/_sqlite/ |
D | module.c | 92 return PyObject_Call(factory, args, kwargs); in module_connect()
|
/third_party/python/Python/ |
D | errors.c | 97 exc = PyObject_Call(exception_type, value, NULL); in _PyErr_CreateException() 784 v = PyObject_Call(exc, args, NULL); in PyErr_SetFromErrnoWithFilenameObjects() 892 v = PyObject_Call(exc, args, NULL); in PyErr_SetExcFromWindowsErrWithFilenameObjects()
|
D | codecs.c | 420 result = PyObject_Call(encoder, args, NULL); in _PyCodec_EncodeInternal() 466 result = PyObject_Call(decoder, args, NULL); in _PyCodec_DecodeInternal()
|
/third_party/python/Include/ |
D | abstract.h | 158 PyAPI_FUNC(PyObject *) PyObject_Call(PyObject *callable,
|
/third_party/python/Objects/ |
D | classobject.c | 465 return PyObject_Call(PyInstanceMethod_GET_FUNCTION(self), arg, kw); in instancemethod_call()
|
D | genericaliasobject.c | 399 PyObject *obj = PyObject_Call(alias->origin, args, kwds); in ga_call()
|
D | weakrefobject.c | 498 WRAP_TERNARY(proxy_call, PyObject_Call) in WRAP_BINARY()
|
D | funcobject.c | 1058 return PyObject_Call(sm->sm_callable, args, kwargs); in sm_call()
|
D | call.c | 314 PyObject_Call(PyObject *callable, PyObject *args, PyObject *kwargs) in PyObject_Call() function
|
/third_party/python/Misc/NEWS.d/ |
D | 3.5.0a2.rst | 7 PyObject_Call() and PyCFunction_Call() now raise a SystemError if a function
|
/third_party/protobuf/python/google/protobuf/pyext/ |
D | repeated_composite_container.cc | 409 if (ScopedPyObjectPtr(PyObject_Call(m.get(), args, kwds)) == NULL) in Subscript()
|
D | repeated_scalar_container.cc | 625 ScopedPyObjectPtr res(PyObject_Call(m.get(), args, kwds)); in Subscript()
|
/third_party/python/Doc/data/ |
D | refcounts.dat | 1592 PyObject_Call:PyObject*::+1: 1593 PyObject_Call:PyObject*:callable_object:0: 1594 PyObject_Call:PyObject*:args:0: 1595 PyObject_Call:PyObject*:kw:0:
|
D | stable_abi.dat | 470 function,PyObject_Call,3.2,
|
/third_party/python/PC/ |
D | python3dll.c | 426 EXPORT_FUNC(PyObject_Call)
|
/third_party/python/Modules/_ctypes/ |
D | callproc.c | 1867 result = PyObject_Call(meth, state, NULL); in unpickle()
|