/external/python/cpython3/Include/ |
D | sliceobject.h | 48 PyAPI_FUNC(int) PySlice_GetIndicesEx(PyObject *r, Py_ssize_t length, 54 #define PySlice_GetIndicesEx(slice, length, start, stop, step, slicelen) ( \ macro
|
/external/python/cpython3/Doc/c-api/ |
D | slice.rst | 49 .. c:function:: int PySlice_GetIndicesEx(PyObject *slice, Py_ssize_t length, Py_ssize_t *start, Py_… 64 if (PySlice_GetIndicesEx(slice, length, &start, &stop, &step, &slicelength) < 0) { 82 :c:func:`!PySlice_GetIndicesEx` is implemented as a macro using 89 :c:func:`!PySlice_GetIndicesEx` is a deprecated function.
|
/external/python/cpython3/Doc/deprecations/ |
D | c-api-pending-removal-in-future.rst | 19 * :c:func:`PySlice_GetIndicesEx`:
|
/external/python/cpython3/Objects/ |
D | sliceobject.c | 324 #undef PySlice_GetIndicesEx 327 PySlice_GetIndicesEx(PyObject *_r, Py_ssize_t length, in PySlice_GetIndicesEx() function
|
/external/cronet/tot/third_party/protobuf/python/google/protobuf/pyext/ |
D | repeated_scalar_container.cc | 284 if (PySlice_GetIndicesEx(slice, length, &from, &to, &step, &slicelength) == in Subscript() 432 if (PySlice_GetIndicesEx(slice, length, &from, &to, &step, &slicelength) == in AssSubscript()
|
D | repeated_composite_container.cc | 240 if (PySlice_GetIndicesEx(item, length, &from, &to, &step, &slicelength) == in Subscript()
|
D | message.cc | 940 PySlice_GetIndicesEx(slice, length, &from, &to, &step, &slice_length); in DeleteRepeatedField()
|
/external/cronet/stable/third_party/protobuf/python/google/protobuf/pyext/ |
D | repeated_scalar_container.cc | 284 if (PySlice_GetIndicesEx(slice, length, &from, &to, &step, &slicelength) == in Subscript() 432 if (PySlice_GetIndicesEx(slice, length, &from, &to, &step, &slicelength) == in AssSubscript()
|
D | repeated_composite_container.cc | 240 if (PySlice_GetIndicesEx(item, length, &from, &to, &step, &slicelength) == in Subscript()
|
D | message.cc | 940 PySlice_GetIndicesEx(slice, length, &from, &to, &step, &slice_length); in DeleteRepeatedField()
|
/external/protobuf/python/google/protobuf/pyext/ |
D | repeated_scalar_container.cc | 284 if (PySlice_GetIndicesEx(slice, length, &from, &to, &step, &slicelength) == in Subscript() 432 if (PySlice_GetIndicesEx(slice, length, &from, &to, &step, &slicelength) == in AssSubscript()
|
D | repeated_composite_container.cc | 240 if (PySlice_GetIndicesEx(item, length, &from, &to, &step, &slicelength) == in Subscript()
|
D | message.cc | 940 PySlice_GetIndicesEx(slice, length, &from, &to, &step, &slice_length); in DeleteRepeatedField()
|
/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 2121 PySlice_GetIndicesEx:int::: 2122 PySlice_GetIndicesEx:PyObject*:slice:0: 2123 PySlice_GetIndicesEx:Py_ssize_t:length:: 2124 PySlice_GetIndicesEx:Py_ssize_t*:start:: 2125 PySlice_GetIndicesEx:Py_ssize_t*:stop:: 2126 PySlice_GetIndicesEx:Py_ssize_t*:step:: 2127 PySlice_GetIndicesEx:Py_ssize_t*:slicelength::
|
D | stable_abi.dat | 601 func,PySlice_GetIndicesEx,3.2,,
|
D | python3.13.abi | 692 …<elf-symbol name='PySlice_GetIndicesEx' type='func-type' binding='global-binding' visibility='defa… 9627 …PySlice_GetIndicesEx' mangled-name='PySlice_GetIndicesEx' filepath='Objects/sliceobject.c' line='3…
|
/external/python/cpython3/PC/ |
D | python3dll.c | 565 EXPORT_FUNC(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 | 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/cpython3/Doc/whatsnew/ |
D | 3.7.rst | 2104 Function :c:func:`PySlice_GetIndicesEx` is deprecated and replaced with 2466 The function :c:func:`PySlice_GetIndicesEx` is considered unsafe for 2469 resized after passing its length to :c:func:`!PySlice_GetIndicesEx`. This
|
/external/python/cpython3/Misc/ |
D | stable_abi.toml | 1302 [function.PySlice_GetIndicesEx]
|
D | HISTORY | 13066 - PySlice_GetIndicesEx now clips the step to [-PY_SSIZE_T_MAX, PY_SSIZE_T_MAX]
|