Home
last modified time | relevance | path

Searched refs:PyList_SetSlice (Results 1 – 22 of 22) sorted by relevance

/third_party/python/Include/
Dlistobject.h37 PyAPI_FUNC(int) PyList_SetSlice(PyObject *, Py_ssize_t, Py_ssize_t, PyObject *);
/third_party/python/Objects/
Daccu.c43 if (PyList_SetSlice(acc->small, 0, nsmall, NULL)) { in flush_accumulator()
Dobject.c2083 PyList_SetSlice(list, i, i + 1, NULL); in Py_ReprLeave()
Dlistobject.c723 PyList_SetSlice(PyObject *a, Py_ssize_t ilow, Py_ssize_t ihigh, PyObject *v) in PyList_SetSlice() function
/third_party/python/Modules/
D_queuemodule.c168 if (PyList_SetSlice(self->lst, 0, self->lst_pos, NULL)) { in simplequeue_pop_item()
D_heapqmodule.c152 if (PyList_SetSlice(heap, n-1, n, NULL)) { in heappop_internal()
D_asynciomodule.c1062 if (PyList_SetSlice(self->fut_callbacks, 0, len, newlist) < 0) { in _asyncio_Future_remove_done_callback()
D_elementtree.c2572 if (PyList_SetSlice(dest_obj, PY_SSIZE_T_MAX, PY_SSIZE_T_MAX, *data) < 0) { in treebuilder_extend_element_text_or_tail()
D_pickle.c6459 ret = PyList_SetSlice(list, list_len, list_len, slice); in do_append()
/third_party/python/Doc/c-api/
Dlist.rst118 .. c:function:: int PyList_SetSlice(PyObject *list, Py_ssize_t low, Py_ssize_t high, PyObject *item…
/third_party/python/Doc/data/
Drefcounts.dat1137 PyList_SetSlice:int:::
1138 PyList_SetSlice:PyObject*:list:0:
1139 PyList_SetSlice:Py_ssize_t:low::
1140 PyList_SetSlice:Py_ssize_t:high::
1141 PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
Dstable_abi.dat331 function,PyList_SetSlice,3.2,
/third_party/python/PC/
Dpython3dll.c317 EXPORT_FUNC(PyList_SetSlice)
/third_party/python/Python/
Dcodecs.c72 return PyList_SetSlice(codec_search_path, i, i+1, NULL); in PyCodec_Unregister()
Dpystate.c822 if (PyList_SetSlice(interp->modules_by_index, in _PyInterpreterState_ClearModules()
Dbltinmodule.c85 if (PyList_SetSlice(new_bases, j, j, new_base) < 0) { in update_bases()
Dsysmodule.c2298 PyList_SetSlice(warnoptions, 0, PyList_GET_SIZE(warnoptions), NULL); in PySys_ResetWarnOptions()
Dsymtable.c970 if (PyList_SetSlice(st->st_stack, size - 1, size, NULL) < 0) in symtable_exit_block()
Dcompile.c6166 PyList_SetSlice(pc->stores, 0, rotations, NULL) || in compiler_pattern_or()
6167 PyList_SetSlice(pc->stores, icontrol - istores, in compiler_pattern_or()
7808 if (PyList_SetSlice(consts, max_const_index+1, in trim_unused_consts()
Dceval.c4583 err = PyList_SetSlice(names, len - 2, len, NULL); in format_missing()
/third_party/python/Misc/
Dstable_abi.txt816 function PyList_SetSlice
/third_party/protobuf/python/google/protobuf/pyext/
Dmessage.cc2127 (PyList_SetSlice(all_fields.get(), actual_size, fields.size(), NULL) < in ListFields()