/third_party/python/Doc/includes/ |
D | run-func.c | 40 pValue = PyObject_CallObject(pFunc, pArgs); in main()
|
/third_party/alsa-lib/modules/mixer/simple/ |
D | python.c | 129 res = PyObject_CallObject(obj, args); in pcall() 783 obj2 = PyObject_CallObject(obj, obj1); in pymixer_melement_new() 927 obj2 = PyObject_CallObject(obj, obj1); in new_helem() 1003 r = PyObject_CallObject(priv->py_event_func, t); in alsa_mixer_simple_event() 1071 obj2 = PyObject_CallObject(obj, obj1); in alsa_mixer_simple_pyinit()
|
/third_party/skia/third_party/externals/markupsafe/ |
D | _speedups.c | 134 rv = PyObject_CallObject(html, NULL); in escape()
|
/third_party/node/tools/inspector_protocol/markupsafe/ |
D | _speedups.c | 134 rv = PyObject_CallObject(html, NULL); in escape()
|
/third_party/protobuf/python/google/protobuf/pyext/ |
D | message_factory.cc | 180 ScopedPyObjectPtr message_class(PyObject_CallObject( in GetOrCreateMessageClass()
|
D | message.cc | 2387 PyObject* py_cmsg = PyObject_CallObject( in FromString() 2404 PyObject* clone = PyObject_CallObject( in DeepCopy()
|
/third_party/markupsafe/ |
D | _speedups.c | 208 s = PyObject_CallObject(html, NULL); in escape()
|
/third_party/libnl/python/netlink/ |
D | capi.i | 626 resobj = PyObject_CallObject(funcobj, cbparobj); in nl_recv_msg_handler() 662 resobj = PyObject_CallObject(funcobj, cbparobj); in nl_recv_err_handler()
|
/third_party/python/Doc/extending/ |
D | extending.rst | 539 .. index:: single: PyObject_CallObject() 542 :c:func:`PyObject_CallObject`. This function has two arguments, both pointers to 558 result = PyObject_CallObject(my_callback, arglist); 561 :c:func:`PyObject_CallObject` returns a Python object pointer: this is the return 562 value of the Python function. :c:func:`PyObject_CallObject` is 565 :c:func:`Py_DECREF`\ -ed immediately after the :c:func:`PyObject_CallObject` 568 The return value of :c:func:`PyObject_CallObject` is "new": either it is a brand 576 If the C code that called :c:func:`PyObject_CallObject` is called from Python, it 588 have to provide an argument list to :c:func:`PyObject_CallObject`. In some cases 599 result = PyObject_CallObject(my_callback, arglist);
|
D | embedding.rst | 197 pValue = PyObject_CallObject(pFunc, pArgs);
|
/third_party/python/Include/ |
D | abstract.h | 169 PyAPI_FUNC(PyObject *) PyObject_CallObject(PyObject *callable,
|
/third_party/python/Modules/_ctypes/ |
D | callbacks.c | 237 result = PyObject_CallObject(callable, arglist); in _CallPythonObject()
|
/third_party/python/Doc/c-api/ |
D | call.rst | 203 | :c:func:`PyObject_CallObject` | ``PyObject *`` | tuple/``NULL`` | --- | 264 .. c:function:: PyObject* PyObject_CallObject(PyObject *callable, PyObject *args)
|
/third_party/python/Modules/_decimal/ |
D | _decimal.c | 1196 self->traps = PyObject_CallObject((PyObject *)PyDecSignalDict_Type, NULL); in context_new() 1202 self->flags = PyObject_CallObject((PyObject *)PyDecSignalDict_Type, NULL); in context_new() 1396 context = PyObject_CallObject((PyObject *)&PyDecContext_Type, NULL); in ieee_context() 1418 copy = PyObject_CallObject((PyObject *)&PyDecContext_Type, NULL); in context_copy() 5856 PyObject_CallObject((PyObject *)&PyDecContext_Type, NULL)); in PyInit__decimal() 5875 PyObject_CallObject((PyObject *)&PyDecContext_Type, NULL)); in PyInit__decimal() 5883 PyObject_CallObject((PyObject *)&PyDecContext_Type, NULL)); in PyInit__decimal()
|
/third_party/python/Modules/_sqlite/ |
D | connection.c | 673 py_retval = PyObject_CallObject(py_func, args); in _pysqlite_func_callback() 735 function_result = PyObject_CallObject(stepmethod, args); in _pysqlite_step_callback()
|
/third_party/python/Objects/ |
D | call.c | 387 PyObject_CallObject(PyObject *callable, PyObject *args) in PyObject_CallObject() function
|
/third_party/python/Doc/data/ |
D | stable_abi.dat | 476 function,PyObject_CallObject,3.2,
|
D | refcounts.dat | 1617 PyObject_CallObject:PyObject*::+1: 1618 PyObject_CallObject:PyObject*:callable_object:0: 1619 PyObject_CallObject:PyObject*:args:0:
|
/third_party/python/PC/ |
D | python3dll.c | 432 EXPORT_FUNC(PyObject_CallObject)
|
/third_party/python/Doc/faq/ |
D | extending.rst | 135 Note that since :c:func:`PyObject_CallObject` *always* wants a tuple for the
|
/third_party/python/Modules/ |
D | _testbuffer.c | 371 tmp = PyObject_CallObject(pack_into, args); in pack_from_list() 452 x = PyObject_CallObject(pack_into, args); in pack_single()
|
D | _sre.c | 772 result = PyObject_CallObject(func, args); in call()
|
D | _pickle.c | 5824 return PyObject_CallObject(cls, args); in instantiate() 6786 obj = PyObject_CallObject(callable, argtup); in load_reduce()
|
/third_party/python/Misc/ |
D | stable_abi.txt | 1047 function PyObject_CallObject
|
/third_party/python/Modules/_io/ |
D | bufferedio.c | 2174 ret = PyObject_CallObject(func, args); in _forward_call()
|