Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
D_bisectmodule.c90 if (PyList_Insert(list, index, item) < 0) in insort_right()
195 if (PyList_Insert(list, index, item) < 0) in insort_left()
/external/python/cpython2/Include/
Dlistobject.h51 PyAPI_FUNC(int) PyList_Insert(PyObject *, Py_ssize_t, PyObject *);
/external/python/cpython2/PC/os2vacpp/
Dpython.def225 PyList_Insert
/external/python/cpython2/Doc/data/
Drefcounts.dat602 PyList_Insert:int:::
603 PyList_Insert:PyObject*:list:0:
604 PyList_Insert:int:index::
605 PyList_Insert:PyObject*:item:+1:
/external/python/cpython2/Doc/c-api/
Dlist.rst129 .. c:function:: int PyList_Insert(PyObject *list, Py_ssize_t index, PyObject *item)
/external/protobuf/python/google/protobuf/pyext/
Drepeated_scalar_container.cc533 if (PyList_Insert(new_list.get(), index, value) < 0) { in Insert()
/external/python/cpython2/PC/os2emx/
Dpython27.def381 "PyList_Insert"
/external/python/cpython2/Python/
Dsysmodule.c1715 if (PyList_Insert(path, 0, a) < 0) in PySys_SetArgvEx()
/external/python/cpython2/Objects/
Dlistobject.c256 PyList_Insert(PyObject *op, Py_ssize_t where, PyObject *newitem) in PyList_Insert() function