Home
last modified time | relevance | path

Searched refs:PyTuple_SetItem (Results 1 – 21 of 21) sorted by relevance

/third_party/libxml2/python/
Dlibxml.c1641 PyTuple_SetItem(list, 0, libxml_xmlPythonErrorFuncCtxt); in libxml_xmlErrorFuncHandler()
1644 PyTuple_SetItem(list, 1, message); in libxml_xmlErrorFuncHandler()
1727 PyTuple_SetItem(list, 0, pyCtxt->arg); in libxml_xmlParserCtxtGenericErrorFuncHandler()
1729 PyTuple_SetItem(list, 1, libxml_charPtrWrap(str)); in libxml_xmlParserCtxtGenericErrorFuncHandler()
1730 PyTuple_SetItem(list, 2, libxml_intWrap(severity)); in libxml_xmlParserCtxtGenericErrorFuncHandler()
1731 PyTuple_SetItem(list, 3, Py_None); in libxml_xmlParserCtxtGenericErrorFuncHandler()
1850 PyTuple_SetItem(py_retval, 0, pyCtxt->f); in libxml_xmlParserCtxtGetErrorHandler()
1852 PyTuple_SetItem(py_retval, 1, pyCtxt->arg); in libxml_xmlParserCtxtGetErrorHandler()
1857 PyTuple_SetItem(py_retval, 0, Py_None); in libxml_xmlParserCtxtGetErrorHandler()
1859 PyTuple_SetItem(py_retval, 1, Py_None); in libxml_xmlParserCtxtGetErrorHandler()
[all …]
Dtypes.c616 PyTuple_SetItem(tuple, 0, node); in libxml_xmlXPathObjectPtrWrap()
617 PyTuple_SetItem(tuple, 1, indexIntoNode); in libxml_xmlXPathObjectPtrWrap()
640 PyTuple_SetItem(tuple, 0, node); in libxml_xmlXPathObjectPtrWrap()
641 PyTuple_SetItem(tuple, 1, indexIntoNode); in libxml_xmlXPathObjectPtrWrap()
658 PyTuple_SetItem(tuple, 0, node); in libxml_xmlXPathObjectPtrWrap()
659 PyTuple_SetItem(tuple, 1, indexIntoNode); in libxml_xmlXPathObjectPtrWrap()
667 PyTuple_SetItem(tuple, 0, node); in libxml_xmlXPathObjectPtrWrap()
668 PyTuple_SetItem(tuple, 1, indexIntoNode); in libxml_xmlXPathObjectPtrWrap()
/third_party/python/Modules/
D_scproxy.c107 PyTuple_SetItem(v, i, Py_None); in get_proxy_settings()
112 PyTuple_SetItem(v, i, Py_None); in get_proxy_settings()
115 PyTuple_SetItem(v, i, t); in get_proxy_settings()
Daudioop.c1451 PyTuple_SetItem(samps, chan, in audioop_ratecv_impl()
/third_party/python/Include/
Dtupleobject.h33 PyAPI_FUNC(int) PyTuple_SetItem(PyObject *, Py_ssize_t, PyObject *);
/third_party/python/Doc/includes/
Drun-func.c38 PyTuple_SetItem(pArgs, i, pValue); in main()
/third_party/python/Doc/c-api/
Dtuple.rst75 .. c:function:: int PyTuple_SetItem(PyObject *p, Py_ssize_t pos, PyObject *o)
89 Like :c:func:`PyTuple_SetItem`, but does no error checking, and should *only* be
95 :c:func:`PyTuple_SetItem`, does *not* discard a reference to any item that
Dintro.rst339 single: PyTuple_SetItem()
342 :c:func:`PyList_SetItem` and :c:func:`PyTuple_SetItem`, which steal a reference
352 PyTuple_SetItem(t, 0, PyLong_FromLong(1L));
353 PyTuple_SetItem(t, 1, PyLong_FromLong(2L));
354 PyTuple_SetItem(t, 2, PyUnicode_FromString("three"));
357 stolen by :c:func:`PyTuple_SetItem`. When you want to keep using an object
361 Incidentally, :c:func:`PyTuple_SetItem` is the *only* way to set tuple items;
364 :c:func:`PyTuple_SetItem` for tuples that you are creating yourself.
Dset.rst134 instances (like :c:func:`PyTuple_SetItem` it can be used to fill-in the values
/third_party/boost/tools/build/src/engine/
Dbuiltins.cpp2295 PyTuple_SetItem( tuple, 0, PyString_FromString( file ) ); in bjam_backtrace()
2296 PyTuple_SetItem( tuple, 1, PyString_FromString( buf ) ); in bjam_backtrace()
2297 PyTuple_SetItem( tuple, 2, PyString_FromString( module_name->value ) ); in bjam_backtrace()
2298 PyTuple_SetItem( tuple, 3, PyString_FromString( f->rulename ) ); in bjam_backtrace()
Dfunction.cpp5277 PyTuple_SetItem( arguments, i, list_to_python( lol_get( frame->args, in call_python_function()
/third_party/python/Modules/_sqlite/
Dcursor.c492 if (PyTuple_SetItem(func_args, 0, Py_NewRef(operation)) != 0) { in _pysqlite_query_execute()
/third_party/python/Doc/data/
Drefcounts.dat2272 PyTuple_SetItem:int:::
2273 PyTuple_SetItem:PyObject*:p:0:
2274 PyTuple_SetItem:Py_ssize_t:pos::
2275 PyTuple_SetItem:PyObject*:o:0:
Dstable_abi.dat633 function,PyTuple_SetItem,3.2,
/third_party/python/Objects/
Dtupleobject.c194 PyTuple_SetItem(PyObject *op, Py_ssize_t i, PyObject *newitem) in PyTuple_SetItem() function
/third_party/python/PC/
Dpython3dll.c588 EXPORT_FUNC(PyTuple_SetItem)
/third_party/python/Misc/
Dstable_abi.txt1274 function PyTuple_SetItem
DHISTORY30278 - tupleobject.c: PyTuple_SetItem asserts refcnt==1
/third_party/skia/third_party/externals/libwebp/swig/
Dlibwebp_python_wrap.c1481 PyTuple_SetItem(data->newargs, 0, obj); in SwigPyClientData_New()
1560 if (PyTuple_SetItem(args, 0, SwigPyObject_long(v)) == 0) { in SwigPyObject_format()
/third_party/flutter/skia/third_party/externals/libwebp/swig/
Dlibwebp_python_wrap.c1476 PyTuple_SetItem(data->newargs, 0, obj); in SwigPyClientData_New()
1555 if (PyTuple_SetItem(args, 0, SwigPyObject_long(v)) == 0) { in SwigPyObject_format()
/third_party/python/Doc/extending/
Dextending.rst988 important exceptions to this rule: :c:func:`PyTuple_SetItem` and