Searched refs:PyList_SetSlice (Results 1 - 19 of 19) sorted by relevance
/third_party/python/Include/ |
H A D | listobject.h | 37 PyAPI_FUNC(int) PyList_SetSlice(PyObject *, Py_ssize_t, Py_ssize_t, PyObject *);
|
/third_party/python/Objects/ |
H A D | accu.c | 43 if (PyList_SetSlice(acc->small, 0, nsmall, NULL)) { in flush_accumulator()
|
H A D | genericaliasobject.c | 383 if (PyList_SetSlice(newargs, PY_SSIZE_T_MAX, PY_SSIZE_T_MAX, subargs) < 0) { in _unpack_args()
|
H A D | object.c | 2214 PyList_SetSlice(list, i, i + 1, NULL); in Py_ReprLeave()
|
H A D | listobject.c | 740 PyList_SetSlice(PyObject *a, Py_ssize_t ilow, Py_ssize_t ihigh, PyObject *v) in PyList_SetSlice() function
|
/third_party/python/Modules/ |
H A D | _queuemodule.c | 172 if (PyList_SetSlice(self->lst, 0, self->lst_pos, NULL)) { in simplequeue_pop_item()
|
H A D | _heapqmodule.c | 156 if (PyList_SetSlice(heap, n-1, n, NULL)) { in heappop_internal()
|
H A D | _asynciomodule.c | 1084 if (PyList_SetSlice(self->fut_callbacks, 0, len, newlist) < 0) { in _asyncio_Future_remove_done_callback()
|
H A D | _elementtree.c | 2560 if (PyList_SetSlice(dest_obj, PY_SSIZE_T_MAX, PY_SSIZE_T_MAX, *data) < 0) { in treebuilder_extend_element_text_or_tail()
|
H A D | _pickle.c | 6466 ret = PyList_SetSlice(list, list_len, list_len, slice); in do_append()
|
/third_party/python/PC/ |
H A D | python3dll.c | 323 EXPORT_FUNC(PyList_SetSlice)
|
/third_party/python/Python/ |
H A D | codecs.c | 73 return PyList_SetSlice(codec_search_path, i, i+1, NULL); in PyCodec_Unregister()
|
H A D | sysmodule.c | 2265 PyList_SetSlice(warnoptions, 0, PyList_GET_SIZE(warnoptions), NULL); in PySys_ResetWarnOptions()
|
H A D | bltinmodule.c | 71 if (PyList_SetSlice(new_bases, j, j, new_base) < 0) { in update_bases()
|
H A D | pystate.c | 1011 if (PyList_SetSlice(interp->modules_by_index, in _PyInterpreterState_ClearModules()
|
H A D | compile.c | 6827 PyList_SetSlice(pc->stores, 0, rotations, NULL) || in compiler_pattern_or() 6828 PyList_SetSlice(pc->stores, icontrol - istores, in compiler_pattern_or() 9371 if (PyList_SetSlice(consts, max_const_index+1, in trim_unused_consts()
|
H A D | symtable.c | 959 if (PyList_SetSlice(st->st_stack, size - 1, size, NULL) < 0) in symtable_exit_block()
|
H A D | ceval.c | 5873 err = PyList_SetSlice(names, len - 2, len, NULL);
|
/third_party/protobuf/python/google/protobuf/pyext/ |
H A D | message.cc | 2127 (PyList_SetSlice(all_fields.get(), actual_size, fields.size(), NULL) < in ListFields()
|
Completed in 88 milliseconds