Home
last modified time | relevance | path

Searched refs:PyList_Insert (Results 1 – 15 of 15) sorted by relevance

/third_party/python/Modules/
D_bisectmodule.c130 if (PyList_Insert(a, index, x) < 0) in _bisect_insort_right_impl()
257 if (PyList_Insert(a, index, x) < 0) in _bisect_insort_left_impl()
Dmain.c177 if (PyList_Insert(sys_path, 0, path0)) { in pymain_sys_path_add_path0()
D_xxsubinterpretersmodule.c2123 int res = PyList_Insert(ids, 0, id); in interp_list_all()
2387 res = PyList_Insert(ids, 0, id_obj); in channel_list_interpreters()
D_ssl.c1886 int res = PyList_Insert(retval, 0, peerobj); in _ssl__SSLSocket_get_unverified_chain_impl()
/third_party/python/Include/
Dlistobject.h33 PyAPI_FUNC(int) PyList_Insert(PyObject *, Py_ssize_t, PyObject *);
/third_party/boost/libs/python/src/
Dlist.cpp65 if (PyList_Insert(this->ptr(), index, item.ptr()) == -1) in insert()
/third_party/python/Doc/c-api/
Dlist.rst97 .. c:function:: int PyList_Insert(PyObject *list, Py_ssize_t index, PyObject *item)
/third_party/protobuf/python/google/protobuf/pyext/
Drepeated_scalar_container.cc530 if (PyList_Insert(new_list.get(), index, value) < 0) { in Subscript()
/third_party/python/Doc/data/
Drefcounts.dat1116 PyList_Insert:int:::
1117 PyList_Insert:PyObject*:list:0:
1118 PyList_Insert:Py_ssize_t:index::
1119 PyList_Insert:PyObject*:item:+1:
Dstable_abi.dat327 function,PyList_Insert,3.2,
/third_party/python/PC/
Dpython3dll.c313 EXPORT_FUNC(PyList_Insert)
/third_party/python/Python/
Dimport.c91 err = PyList_Insert(path_hooks, 0, zipimporter); in _PyImportZip_Init()
Dsysmodule.c3188 if (PyList_Insert(sys_path, 0, path0) < 0) { in PySys_SetArgvEx()
/third_party/python/Misc/
Dstable_abi.txt808 function PyList_Insert
/third_party/python/Objects/
Dlistobject.c295 PyList_Insert(PyObject *op, Py_ssize_t where, PyObject *newitem) in PyList_Insert() function