/external/python/cpython3/Include/ |
D | sliceobject.h | 44 PyAPI_FUNC(int) PySlice_GetIndicesEx(PyObject *r, Py_ssize_t length, 50 #define PySlice_GetIndicesEx(slice, length, start, stop, step, slicelen) ( \ macro
|
/external/python/cffi/c/ |
D | minibuffer.h | 244 #if PY_VERSION_HEX < 0x03070000 && defined(PySlice_GetIndicesEx) && !defined(PYPY_VERSION) 245 #undef PySlice_GetIndicesEx 262 if (PySlice_GetIndicesEx(item, self->mb_size, in mb_subscript() 295 if (PySlice_GetIndicesEx(item, self->mb_size, in mb_ass_subscript()
|
/external/python/cpython3/Doc/c-api/ |
D | slice.rst | 46 .. 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/Include/ |
D | sliceobject.h | 37 PyAPI_FUNC(int) PySlice_GetIndicesEx(PySliceObject *r, Py_ssize_t length,
|
/external/python/cpython2/Doc/c-api/ |
D | slice.rst | 43 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/ |
D | repeated_scalar_container.cc | 295 if (PySlice_GetIndicesEx(slice, in Subscript() 298 if (PySlice_GetIndicesEx(reinterpret_cast<PySliceObject*>(slice), in Subscript() 454 if (PySlice_GetIndicesEx(slice, in Subscript() 457 if (PySlice_GetIndicesEx(reinterpret_cast<PySliceObject*>(slice), in Subscript()
|
D | repeated_composite_container.cc | 251 if (PySlice_GetIndicesEx(item, in Subscript() 254 if (PySlice_GetIndicesEx(reinterpret_cast<PySliceObject*>(item), in Subscript()
|
D | message.cc | 989 PySlice_GetIndicesEx( in DeleteRepeatedField() 993 PySlice_GetIndicesEx( in DeleteRepeatedField()
|
/external/python/cpython2/Objects/ |
D | sliceobject.c | 220 #undef PySlice_GetIndicesEx 223 PySlice_GetIndicesEx(PySliceObject *r, Py_ssize_t length, in PySlice_GetIndicesEx() function
|
/external/python/cpython3/Objects/ |
D | sliceobject.c | 283 #undef PySlice_GetIndicesEx 286 PySlice_GetIndicesEx(PyObject *_r, Py_ssize_t length, in PySlice_GetIndicesEx() function
|
/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 2083 PySlice_GetIndicesEx:int::: 2084 PySlice_GetIndicesEx:PyObject*:slice:0: 2085 PySlice_GetIndicesEx:Py_ssize_t:length:: 2086 PySlice_GetIndicesEx:Py_ssize_t*:start:: 2087 PySlice_GetIndicesEx:Py_ssize_t*:stop:: 2088 PySlice_GetIndicesEx:Py_ssize_t*:step:: 2089 PySlice_GetIndicesEx:Py_ssize_t*:slicelength::
|
/external/python/cpython3/PC/ |
D | python3.def | 538 PySlice_GetIndicesEx=python39.PySlice_GetIndicesEx
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 522 "PySlice_GetIndicesEx"
|
/external/python/pybind11/include/pybind11/ |
D | pytypes.h | 1181 return PySlice_GetIndicesEx((PYBIND11_SLICE_OBJECT *) m_ptr, in compute() 1188 return PySlice_GetIndicesEx((PYBIND11_SLICE_OBJECT *) m_ptr, in compute()
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.2rc1.rst | 803 Function PySlice_GetIndicesEx() no longer replaced with a macro if
|
D | 3.6.1rc1.rst | 728 Function PySlice_GetIndicesEx() is replaced with a macro if Py_LIMITED_API
|
D | 3.5.4rc1.rst | 1116 Function PySlice_GetIndicesEx() is replaced with a macro if Py_LIMITED_API
|
D | 3.7.0a1.rst | 6335 Function PySlice_GetIndicesEx() is deprecated and replaced with a macro if
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.12rc1.rst | 1139 PySlice_GetIndicesEx now clips the step to [-PY_SSIZE_T_MAX, PY_SSIZE_T_MAX]
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.7.rst | 2090 Function :c:func:`PySlice_GetIndicesEx` is deprecated and replaced with 2451 The function :c:func:`PySlice_GetIndicesEx` is considered unsafe for 2454 resized after passing its length to :c:func:`!PySlice_GetIndicesEx`. This
|
/external/python/cpython3/Misc/ |
D | HISTORY | 13066 - PySlice_GetIndicesEx now clips the step to [-PY_SSIZE_T_MAX, PY_SSIZE_T_MAX]
|