Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
D_bisectmodule.c93 if (PyList_Insert(list, index, item) < 0) in insort_right()
197 if (PyList_Insert(list, index, item) < 0) in insort_left()
Dmain.c686 if (PyList_Insert(sys_path, 0, pymain->main_importer_path)) { in pymain_run_main_from_importer()
1375 if (PyList_Insert(sys_path, 0, path0) < 0) { in pymain_update_sys_path()
/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/cpython3/Include/
Dlistobject.h56 PyAPI_FUNC(int) PyList_Insert(PyObject *, Py_ssize_t, PyObject *);
/external/python/cpython2/PC/os2vacpp/
Dpython.def225 PyList_Insert
/external/python/cpython3/Doc/c-api/
Dlist.rst96 .. c:function:: int PyList_Insert(PyObject *list, Py_ssize_t index, PyObject *item)
/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/python/cpython3/PC/
Dpython3.def307 PyList_Insert=python37.PyList_Insert
/external/protobuf/python/google/protobuf/pyext/
Drepeated_scalar_container.cc533 if (PyList_Insert(new_list.get(), index, value) < 0) { in Insert()
/external/python/cpython3/Doc/data/
Drefcounts.dat1080 PyList_Insert:int:::
1081 PyList_Insert:PyObject*:list:0:
1082 PyList_Insert:Py_ssize_t:index::
1083 PyList_Insert:PyObject*:item:+1:
/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/cpython3/Python/
Dimport.c126 err = PyList_Insert(path_hooks, 0, zipimporter); in _PyImportZip_Init()
Dsysmodule.c2625 if (PyList_Insert(sys_path, 0, argv0) < 0) { in PySys_SetArgvEx()
/external/python/cpython2/Objects/
Dlistobject.c256 PyList_Insert(PyObject *op, Py_ssize_t where, PyObject *newitem) in PyList_Insert() function
/external/python/cpython3/Objects/
Dlistobject.c271 PyList_Insert(PyObject *op, Py_ssize_t where, PyObject *newitem) in PyList_Insert() function