Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dsliceobject.h48 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/
Dslice.rst49 .. 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/
Dc-api-pending-removal-in-future.rst19 * :c:func:`PySlice_GetIndicesEx`:
/external/python/cpython3/Objects/
Dsliceobject.c324 #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/
Drepeated_scalar_container.cc284 if (PySlice_GetIndicesEx(slice, length, &from, &to, &step, &slicelength) == in Subscript()
432 if (PySlice_GetIndicesEx(slice, length, &from, &to, &step, &slicelength) == in AssSubscript()
Drepeated_composite_container.cc240 if (PySlice_GetIndicesEx(item, length, &from, &to, &step, &slicelength) == in Subscript()
Dmessage.cc940 PySlice_GetIndicesEx(slice, length, &from, &to, &step, &slice_length); in DeleteRepeatedField()
/external/cronet/stable/third_party/protobuf/python/google/protobuf/pyext/
Drepeated_scalar_container.cc284 if (PySlice_GetIndicesEx(slice, length, &from, &to, &step, &slicelength) == in Subscript()
432 if (PySlice_GetIndicesEx(slice, length, &from, &to, &step, &slicelength) == in AssSubscript()
Drepeated_composite_container.cc240 if (PySlice_GetIndicesEx(item, length, &from, &to, &step, &slicelength) == in Subscript()
Dmessage.cc940 PySlice_GetIndicesEx(slice, length, &from, &to, &step, &slice_length); in DeleteRepeatedField()
/external/protobuf/python/google/protobuf/pyext/
Drepeated_scalar_container.cc284 if (PySlice_GetIndicesEx(slice, length, &from, &to, &step, &slicelength) == in Subscript()
432 if (PySlice_GetIndicesEx(slice, length, &from, &to, &step, &slicelength) == in AssSubscript()
Drepeated_composite_container.cc240 if (PySlice_GetIndicesEx(item, length, &from, &to, &step, &slicelength) == in Subscript()
Dmessage.cc940 PySlice_GetIndicesEx(slice, length, &from, &to, &step, &slice_length); in DeleteRepeatedField()
/external/python/cpython3/Doc/data/
Drefcounts.dat2121 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::
Dstable_abi.dat601 func,PySlice_GetIndicesEx,3.2,,
Dpython3.13.abi692 …<elf-symbol name='PySlice_GetIndicesEx' type='func-type' binding='global-binding' visibility='defa…
9627PySlice_GetIndicesEx' mangled-name='PySlice_GetIndicesEx' filepath='Objects/sliceobject.c' line='3…
/external/python/cpython3/PC/
Dpython3dll.c565 EXPORT_FUNC(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.rst1116 Function PySlice_GetIndicesEx() is replaced with a macro if Py_LIMITED_API
D3.7.0a1.rst6335 Function PySlice_GetIndicesEx() is deprecated and replaced with a macro if
/external/python/cpython3/Doc/whatsnew/
D3.7.rst2104 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/
Dstable_abi.toml1302 [function.PySlice_GetIndicesEx]
DHISTORY13066 - PySlice_GetIndicesEx now clips the step to [-PY_SSIZE_T_MAX, PY_SSIZE_T_MAX]