Home
last modified time | relevance | path

Searched refs:PyObject_CallObject (Results 1 – 25 of 58) sorted by relevance

123

/external/python/cpython2/Doc/includes/
Drun-func.c39 pValue = PyObject_CallObject(pFunc, pArgs); in main()
/external/python/cpython3/Doc/includes/
Drun-func.c40 pValue = PyObject_CallObject(pFunc, pArgs); in main()
/external/python/cpython2/Modules/_sqlite/
Dconnection.c668 py_retval = PyObject_CallObject(py_func, args); in _pysqlite_func_callback()
734 function_result = PyObject_CallObject(stepmethod, args); in _pysqlite_step_callback()
1271 result = PyObject_CallObject(method, args); in pysqlite_connection_execute()
1300 result = PyObject_CallObject(method, args); in pysqlite_connection_executemany()
1329 result = PyObject_CallObject(method, args); in pysqlite_connection_executescript()
1458 retval = PyObject_CallObject(pyfn_iterdump, args); in pysqlite_connection_iterdump()
/external/libchrome/third_party/markupsafe/
D_speedups.c134 rv = PyObject_CallObject(html, NULL); in escape()
/external/python/cpython3/Modules/_sqlite/
Dconnection.c604 py_retval = PyObject_CallObject(py_func, args); in _pysqlite_func_callback()
666 function_result = PyObject_CallObject(stepmethod, args); in _pysqlite_step_callback()
1294 result = PyObject_CallObject(method, args); in pysqlite_connection_execute()
1323 result = PyObject_CallObject(method, args); in pysqlite_connection_executemany()
1352 result = PyObject_CallObject(method, args); in pysqlite_connection_executescript()
/external/protobuf/python/google/protobuf/pyext/
Dmessage_factory.cc180 ScopedPyObjectPtr message_class(PyObject_CallObject( in GetOrCreateMessageClass()
/external/python/markupsafe/src/markupsafe/
D_speedups.c208 s = PyObject_CallObject(html, NULL); in escape()
/external/tensorflow/tensorflow/python/util/
Dfast_module_type.cc158 auto result = PyObject_CallObject(func, arglist); in CallFunc()
/external/python/cpython2/PC/os2vacpp/
Dpython.def308 PyObject_CallObject
/external/python/cpython2/Modules/_ctypes/
D_ctypes.c262 obj = PyObject_CallObject((PyObject *)&DictRemover_Type, NULL); in PyDict_SetItemProxy()
487 dict = (StgDictObject *)PyObject_CallObject((PyObject *)&PyCStgDict_Type, NULL); in StructUnionType_new()
1019 stgdict = (StgDictObject *)PyObject_CallObject( in PyCPointerType_new()
1489 stgdict = (StgDictObject *)PyObject_CallObject( in PyCArrayType_new()
1959 stgdict = (StgDictObject *)PyObject_CallObject( in CreateSwappedType()
2070 stgdict = (StgDictObject *)PyObject_CallObject( in PyCSimpleType_new()
2472 stgdict = (StgDictObject *)PyObject_CallObject( in PyCFuncPtrType_new()
3027 ob = PyObject_CallObject(type, value); in _PyCData_set()
3861 ob = PyObject_CallObject(ob, NULL); in _build_callargs()
3864 ob = PyObject_CallObject(dict->proto, NULL); in _build_callargs()
Dstgdict.c235 new_descr = (CFieldObject *)PyObject_CallObject((PyObject *)&PyCField_Type, NULL); in MakeFields()
Dcallbacks.c315 result = PyObject_CallObject(callable, arglist); in _CallPythonObject()
/external/libnl/python/netlink/
Dcapi.i626 resobj = PyObject_CallObject(funcobj, cbparobj); in nl_recv_msg_handler()
662 resobj = PyObject_CallObject(funcobj, cbparobj); in nl_recv_err_handler()
/external/python/cpython3/Doc/extending/
Dextending.rst541 .. index:: single: PyObject_CallObject()
544 :c:func:`PyObject_CallObject`. This function has two arguments, both pointers to
560 result = PyObject_CallObject(my_callback, arglist);
563 :c:func:`PyObject_CallObject` returns a Python object pointer: this is the return
564 value of the Python function. :c:func:`PyObject_CallObject` is
567 :c:func:`Py_DECREF`\ -ed immediately after the :c:func:`PyObject_CallObject`
570 The return value of :c:func:`PyObject_CallObject` is "new": either it is a brand
578 If the C code that called :c:func:`PyObject_CallObject` is called from Python, it
590 have to provide an argument list to :c:func:`PyObject_CallObject`. In some cases
601 result = PyObject_CallObject(my_callback, arglist);
/external/python/cpython2/Doc/extending/
Dextending.rst495 .. index:: single: PyObject_CallObject()
498 :c:func:`PyObject_CallObject`. This function has two arguments, both pointers to
514 result = PyObject_CallObject(my_callback, arglist);
517 :c:func:`PyObject_CallObject` returns a Python object pointer: this is the return
518 value of the Python function. :c:func:`PyObject_CallObject` is
521 -ed immediately after the :c:func:`PyObject_CallObject` call.
523 The return value of :c:func:`PyObject_CallObject` is "new": either it is a brand
531 If the C code that called :c:func:`PyObject_CallObject` is called from Python, it
543 have to provide an argument list to :c:func:`PyObject_CallObject`. In some cases
554 result = PyObject_CallObject(my_callback, arglist);
/external/tensorflow/tensorflow/python/framework/
Dop_def_util.cc177 result.reset(PyObject_CallObject(tensor_proto, nullptr)); in operator ()()
/external/python/cpython3/Include/
Dabstract.h169 PyAPI_FUNC(PyObject *) PyObject_CallObject(PyObject *callable,
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DPythonDataObjects.cpp954 return PythonObject(PyRefType::Owned, PyObject_CallObject(m_py_obj, nullptr)); in operator ()()
961 PyObject_CallObject(m_py_obj, arg_tuple.get())); in operator ()()
968 PyObject_CallObject(m_py_obj, arg_tuple.get())); in operator ()()
/external/python/cpython3/Modules/_ctypes/
Dcallbacks.c236 result = PyObject_CallObject(callable, arglist); in _CallPythonObject()
/external/python/cpython2/Include/
Dabstract.h314 PyAPI_FUNC(PyObject *) PyObject_CallObject(PyObject *callable_object,
/external/python/cpython2/Modules/
D_elementtree.c166 result = PyObject_CallObject(elementtree_deepcopy_obj, args); in deepcopy()
214 result = PyObject_CallObject(function, args); in list_join()
1014 result = PyObject_CallObject(elementtree_iter_obj, args); in element_iter_impl()
1072 result = PyObject_CallObject(elementtree_itertext_obj, args); in element_itertext()
/external/tensorflow/tensorflow/python/eager/
Dpywrap_tfe_src.cc2466 PyObject_CallObject(forward_gradient_function, callback_args.get()));
2483 tensorflow::Safe_PyObjectPtr py_result(PyObject_CallObject(
2567 return PyObject_CallObject(backward_function, out_grads);
2621 return PyObject_CallObject(backward_function, out_grads);
2672 return PyObject_CallObject(backward_function, out_grads);
3267 PyObject_CallObject(gradient_function, callback_args.get()));
3547 PyObject_CallObject(callback_fn, callback_args.get());
/external/python/cpython3/Doc/c-api/
Dcall.rst203 | :c:func:`PyObject_CallObject` | ``PyObject *`` | tuple/``NULL`` | --- |
264 .. c:function:: PyObject* PyObject_CallObject(PyObject *callable, PyObject *args)
/external/python/cpython3/Modules/_decimal/
D_decimal.c1197 self->traps = PyObject_CallObject((PyObject *)PyDecSignalDict_Type, NULL); in context_new()
1203 self->flags = PyObject_CallObject((PyObject *)PyDecSignalDict_Type, NULL); in context_new()
1397 context = PyObject_CallObject((PyObject *)&PyDecContext_Type, NULL); in ieee_context()
1419 copy = PyObject_CallObject((PyObject *)&PyDecContext_Type, NULL); in context_copy()
5845 PyObject_CallObject((PyObject *)&PyDecContext_Type, NULL)); in PyInit__decimal()
5864 PyObject_CallObject((PyObject *)&PyDecContext_Type, NULL)); in PyInit__decimal()
5872 PyObject_CallObject((PyObject *)&PyDecContext_Type, NULL)); in PyInit__decimal()
/external/python/cpython3/PC/
Dpython3.def456 PyObject_CallObject=python39.PyObject_CallObject

123