Home
last modified time | relevance | path

Searched refs:PySlice_GetIndicesEx (Results 1 – 19 of 19) sorted by relevance

/external/python/cpython3/Include/
Dsliceobject.h43 PyAPI_FUNC(int) PySlice_GetIndicesEx(PyObject *r, Py_ssize_t length,
48 #define PySlice_GetIndicesEx(slice, length, start, stop, step, slicelen) ( \ macro
/external/python/cpython3/Doc/c-api/
Dslice.rst46 .. c:function:: int PySlice_GetIndicesEx(PyObject *slice, Py_ssize_t length, Py_ssize_t *start, Py_…
61 if (PySlice_GetIndicesEx(slice, length, &start, &stop, &step, &slicelength) < 0) {
79 :c:func:`!PySlice_GetIndicesEx` is implemented as a macro using
86 :c:func:`!PySlice_GetIndicesEx` is a deprecated function.
/external/python/cpython2/Doc/c-api/
Dslice.rst43 incorporate the source of :c:func:`PySlice_GetIndicesEx`, suitably renamed,
52 .. c:function:: int PySlice_GetIndicesEx(PySliceObject *slice, Py_ssize_t length, Py_ssize_t *start…
/external/protobuf/python/google/protobuf/pyext/
Drepeated_scalar_container.cc307 if (PySlice_GetIndicesEx(slice, in Subscript()
309 if (PySlice_GetIndicesEx(reinterpret_cast<PySliceObject*>(slice), in Subscript()
460 if (PySlice_GetIndicesEx(slice, in AssSubscript()
462 if (PySlice_GetIndicesEx(reinterpret_cast<PySliceObject*>(slice), in AssSubscript()
Drepeated_composite_container.cc267 if (PySlice_GetIndicesEx(slice, in AssignSubscript()
269 if (PySlice_GetIndicesEx(reinterpret_cast<PySliceObject*>(slice), in AssignSubscript()
Dmessage.cc979 PySlice_GetIndicesEx( in CheckAndGetInteger()
/external/python/cpython2/Include/
Dsliceobject.h37 PyAPI_FUNC(int) PySlice_GetIndicesEx(PySliceObject *r, Py_ssize_t length,
/external/python/cpython2/Objects/
Dsliceobject.c220 #undef PySlice_GetIndicesEx
223 PySlice_GetIndicesEx(PySliceObject *r, Py_ssize_t length, in PySlice_GetIndicesEx() function
/external/python/cpython3/Objects/
Dsliceobject.c282 #undef PySlice_GetIndicesEx
285 PySlice_GetIndicesEx(PyObject *_r, Py_ssize_t length, in PySlice_GetIndicesEx() function
/external/python/cpython3/Doc/data/
Drefcounts.dat2054 PySlice_GetIndicesEx:int:::
2055 PySlice_GetIndicesEx:PyObject*:slice:0:
2056 PySlice_GetIndicesEx:Py_ssize_t:length::
2057 PySlice_GetIndicesEx:Py_ssize_t*:start::
2058 PySlice_GetIndicesEx:Py_ssize_t*:stop::
2059 PySlice_GetIndicesEx:Py_ssize_t*:step::
2060 PySlice_GetIndicesEx:Py_ssize_t*:slicelength::
/external/python/cpython3/PC/
Dpython3.def536 PySlice_GetIndicesEx=python37.PySlice_GetIndicesEx
/external/python/cpython2/PC/os2emx/
Dpython27.def522 "PySlice_GetIndicesEx"
/external/python/cpython3/Misc/NEWS.d/
D3.6.2rc1.rst803 Function PySlice_GetIndicesEx() no longer replaced with a macro if
D3.6.1rc1.rst728 Function PySlice_GetIndicesEx() is replaced with a macro if Py_LIMITED_API
D3.5.4rc1.rst1120 Function PySlice_GetIndicesEx() is replaced with a macro if Py_LIMITED_API
D3.7.0a1.rst6359 Function PySlice_GetIndicesEx() is deprecated and replaced with a macro if
/external/python/cpython2/Misc/NEWS.d/
D2.7.12rc1.rst1139 PySlice_GetIndicesEx now clips the step to [-PY_SSIZE_T_MAX, PY_SSIZE_T_MAX]
/external/python/cpython3/Doc/whatsnew/
D3.7.rst2083 Function :c:func:`PySlice_GetIndicesEx` is deprecated and replaced with
2440 The function :c:func:`PySlice_GetIndicesEx` is considered unsafe for
2443 resized after passing its length to :c:func:`!PySlice_GetIndicesEx`. This
/external/python/cpython3/Misc/
DHISTORY13066 - PySlice_GetIndicesEx now clips the step to [-PY_SSIZE_T_MAX, PY_SSIZE_T_MAX]