Searched refs:PyList_Insert (Results 1 – 15 of 15) sorted by relevance
/third_party/python/Modules/ |
D | _bisectmodule.c | 130 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()
|
D | main.c | 177 if (PyList_Insert(sys_path, 0, path0)) { in pymain_sys_path_add_path0()
|
D | _xxsubinterpretersmodule.c | 2123 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.c | 1886 int res = PyList_Insert(retval, 0, peerobj); in _ssl__SSLSocket_get_unverified_chain_impl()
|
/third_party/python/Include/ |
D | listobject.h | 33 PyAPI_FUNC(int) PyList_Insert(PyObject *, Py_ssize_t, PyObject *);
|
/third_party/boost/libs/python/src/ |
D | list.cpp | 65 if (PyList_Insert(this->ptr(), index, item.ptr()) == -1) in insert()
|
/third_party/python/Doc/c-api/ |
D | list.rst | 97 .. c:function:: int PyList_Insert(PyObject *list, Py_ssize_t index, PyObject *item)
|
/third_party/protobuf/python/google/protobuf/pyext/ |
D | repeated_scalar_container.cc | 530 if (PyList_Insert(new_list.get(), index, value) < 0) { in Subscript()
|
/third_party/python/Doc/data/ |
D | refcounts.dat | 1116 PyList_Insert:int::: 1117 PyList_Insert:PyObject*:list:0: 1118 PyList_Insert:Py_ssize_t:index:: 1119 PyList_Insert:PyObject*:item:+1:
|
D | stable_abi.dat | 327 function,PyList_Insert,3.2,
|
/third_party/python/PC/ |
D | python3dll.c | 313 EXPORT_FUNC(PyList_Insert)
|
/third_party/python/Python/ |
D | import.c | 91 err = PyList_Insert(path_hooks, 0, zipimporter); in _PyImportZip_Init()
|
D | sysmodule.c | 3188 if (PyList_Insert(sys_path, 0, path0) < 0) { in PySys_SetArgvEx()
|
/third_party/python/Misc/ |
D | stable_abi.txt | 808 function PyList_Insert
|
/third_party/python/Objects/ |
D | listobject.c | 295 PyList_Insert(PyObject *op, Py_ssize_t where, PyObject *newitem) in PyList_Insert() function
|