Searched refs:PySlice_GetIndicesEx (Results 1 – 19 of 19) sorted by relevance
/external/python/cpython3/Include/ |
D | sliceobject.h | 43 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/ |
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/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 | 307 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()
|
D | repeated_composite_container.cc | 267 if (PySlice_GetIndicesEx(slice, in AssignSubscript() 269 if (PySlice_GetIndicesEx(reinterpret_cast<PySliceObject*>(slice), in AssignSubscript()
|
D | message.cc | 979 PySlice_GetIndicesEx( in CheckAndGetInteger()
|
/external/python/cpython2/Include/ |
D | sliceobject.h | 37 PyAPI_FUNC(int) PySlice_GetIndicesEx(PySliceObject *r, Py_ssize_t length,
|
/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 | 282 #undef PySlice_GetIndicesEx 285 PySlice_GetIndicesEx(PyObject *_r, Py_ssize_t length, in PySlice_GetIndicesEx() function
|
/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 2054 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/ |
D | python3.def | 536 PySlice_GetIndicesEx=python37.PySlice_GetIndicesEx
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 522 "PySlice_GetIndicesEx"
|
/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 | 1120 Function PySlice_GetIndicesEx() is replaced with a macro if Py_LIMITED_API
|
D | 3.7.0a1.rst | 6359 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 | 2083 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/ |
D | HISTORY | 13066 - PySlice_GetIndicesEx now clips the step to [-PY_SSIZE_T_MAX, PY_SSIZE_T_MAX]
|