Home
last modified time | relevance | path

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

12

/external/python/cpython2/Include/
Dlistobject.h54 PyAPI_FUNC(int) PyList_SetSlice(PyObject *, Py_ssize_t, Py_ssize_t, PyObject *);
/external/python/cpython3/Include/
Dlistobject.h59 PyAPI_FUNC(int) PyList_SetSlice(PyObject *, Py_ssize_t, Py_ssize_t, PyObject *);
/external/python/cpython3/Objects/
Daccu.c43 if (PyList_SetSlice(acc->small, 0, nsmall, NULL)) { in flush_accumulator()
Dobject.c2116 PyList_SetSlice(list, i, i + 1, NULL); in Py_ReprLeave()
/external/python/cpython3/Modules/
D_queuemodule.c146 if (PyList_SetSlice(self->lst, 0, self->lst_pos, NULL)) { in simplequeue_pop_item()
D_heapqmodule.c143 if (PyList_SetSlice(heap, n-1, n, NULL)) { in heappop_internal()
D_asynciomodule.c1013 if (PyList_SetSlice(self->fut_callbacks, 0, len, newlist) < 0) { in _asyncio_Future_remove_done_callback()
/external/python/cpython2/PC/os2vacpp/
Dpython.def229 PyList_SetSlice
/external/python/cpython2/Doc/data/
Drefcounts.dat623 PyList_SetSlice:int:::
624 PyList_SetSlice:PyObject*:list:0:
625 PyList_SetSlice:int:low::
626 PyList_SetSlice:int:high::
627 PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
/external/python/cpython3/Doc/c-api/
Dlist.rst118 .. c:function:: int PyList_SetSlice(PyObject *list, Py_ssize_t low, Py_ssize_t high, PyObject *item…
/external/python/cpython2/Modules/
D_heapqmodule.c165 PyList_SetSlice(heap, n-1, n, NULL); in heappop()
DcPickle.c13 #define DEL_LIST_SLICE(list, from, to) (PyList_SetSlice(list, from, to, NULL))
4439 i=PyList_SetSlice(list, list_len, list_len, slice); in do_append()
/external/python/cpython2/Doc/c-api/
Dlist.rst159 .. c:function:: int PyList_SetSlice(PyObject *list, Py_ssize_t low, Py_ssize_t high, PyObject *item…
/external/python/cpython3/Doc/data/
Drefcounts.dat1101 PyList_SetSlice:int:::
1102 PyList_SetSlice:PyObject*:list:0:
1103 PyList_SetSlice:Py_ssize_t:low::
1104 PyList_SetSlice:Py_ssize_t:high::
1105 PyList_SetSlice:PyObject*:itemlist:0:but increfs its elements?
/external/python/cpython3/PC/
Dpython3.def311 PyList_SetSlice=python37.PyList_SetSlice
/external/python/cpython2/Python/
Dbltinmodule.c337 if (j < len && PyList_SetSlice(result, j, len, NULL) < 0) in builtin_filter()
1076 if (i < len && PyList_SetSlice(result, i, len, NULL) < 0) in builtin_map()
2604 if (PyList_SetSlice(ret, i, len, NULL) < 0) in builtin_zip()
Dsysmodule.c1028 PyList_SetSlice(warnoptions, 0, PyList_GET_SIZE(warnoptions), NULL); in PySys_ResetWarnOptions()
/external/python/cpython3/Python/
Dpystate.c557 if (PyList_SetSlice(state->modules_by_index, in _PyState_ClearModules()
Dsysmodule.c1795 PyList_SetSlice(warnoptions, 0, PyList_GET_SIZE(warnoptions), NULL); in PySys_ResetWarnOptions()
Dsymtable.c929 if (PyList_SetSlice(st->st_stack, size - 1, size, NULL) < 0) in symtable_exit_block()
Dbltinmodule.c109 if (PyList_SetSlice(new_bases, j, j, new_base) < 0) { in update_bases()
/external/python/cpython2/PC/os2emx/
Dpython27.def383 "PyList_SetSlice"
/external/python/cpython2/Objects/
Dobject.c2423 PyList_SetSlice(list, i, i + 1, NULL); in Py_ReprLeave()
Dlistobject.c712 PyList_SetSlice(PyObject *a, Py_ssize_t ilow, Py_ssize_t ihigh, PyObject *v) in PyList_SetSlice() function
/external/protobuf/python/google/protobuf/pyext/
Dmessage.cc2160 (PyList_SetSlice(all_fields.get(), actual_size, fields.size(), NULL) < in CheckAndGetInteger()

12