Home
last modified time | relevance | path

Searched refs:PySlice_New (Results 1 – 15 of 15) sorted by relevance

/external/python/cpython2/Objects/
Dsliceobject.c61 PySlice_New(PyObject *start, PyObject *stop, PyObject *step) in PySlice_New() function
96 slice = PySlice_New(start, end, NULL); in _PySlice_FromIndices()
252 return PySlice_New(start, stop, step); in slice_new()
/external/protobuf/python/google/protobuf/pyext/
Drepeated_scalar_container.cc482 ScopedPyObjectPtr full_slice(PySlice_New(NULL, NULL, NULL)); in AssSubscript()
531 ScopedPyObjectPtr full_slice(PySlice_New(NULL, NULL, NULL)); in Insert()
574 ScopedPyObjectPtr full_slice(PySlice_New(NULL, NULL, NULL)); in RichCompare()
617 ScopedPyObjectPtr full_slice(PySlice_New(NULL, NULL, NULL)); in Sort()
687 ScopedPyObjectPtr full_slice(PySlice_New(NULL, NULL, NULL)); in InitializeAndCopyToParentContainer()
Drepeated_composite_container.cc316 ScopedPyObjectPtr full_slice(PySlice_New(NULL, NULL, NULL)); in RichCompare()
/external/python/cpython3/Objects/
Dsliceobject.c116 PySlice_New(PyObject *start, PyObject *stop, PyObject *step) in PySlice_New() function
157 slice = PySlice_New(start, end, NULL); in _PySlice_FromIndices()
314 return PySlice_New(start, stop, step); in slice_new()
/external/python/cpython2/Include/
Dsliceobject.h32 PyAPI_FUNC(PyObject *) PySlice_New(PyObject* start, PyObject* stop,
/external/python/cpython3/Include/
Dsliceobject.h33 PyAPI_FUNC(PyObject *) PySlice_New(PyObject* start, PyObject* stop,
/external/python/cpython2/Doc/c-api/
Dslice.rst22 .. c:function:: PyObject* PySlice_New(PyObject *start, PyObject *stop, PyObject *step)
/external/python/cpython2/PC/os2vacpp/
Dpython.def360 PySlice_New
/external/python/cpython3/Doc/c-api/
Dslice.rst20 .. c:function:: PyObject* PySlice_New(PyObject *start, PyObject *stop, PyObject *step)
/external/python/cpython2/Doc/data/
Drefcounts.dat1232 PySlice_New:PyObject*::+1:
1233 PySlice_New:PyObject*:start:0:
1234 PySlice_New:PyObject*:stop:0:
1235 PySlice_New:PyObject*:step:0:
/external/python/cpython3/PC/
Dpython3.def537 PySlice_New=python37.PySlice_New
/external/python/cpython3/Doc/data/
Drefcounts.dat2062 PySlice_New:PyObject*::+1:
2063 PySlice_New:PyObject*:start:0:
2064 PySlice_New:PyObject*:stop:0:
2065 PySlice_New:PyObject*:step:0:
/external/python/cpython2/PC/os2emx/
Dpython27.def523 "PySlice_New"
/external/python/cpython2/Python/
Dceval.c3130 x = PySlice_New(u, v, w); in PyEval_EvalFrameEx()
4770 PyObject *slice = PySlice_New(v, w, NULL); in apply_slice()
4800 PyObject *slice = PySlice_New(v, w, NULL); in assign_slice()
/external/python/cpython3/Python/
Dceval.c3244 slice = PySlice_New(start, stop, step); in _PyEval_EvalFrameDefault()