Home
last modified time | relevance | path

Searched refs:_PyEval_SliceIndex (Results 1 – 14 of 14) sorted by relevance

/external/python/cpython2/Objects/
Dsliceobject.c145 if (!_PyEval_SliceIndex(r->step, step)) return -1; in PySlice_GetIndicesEx()
160 if (!_PyEval_SliceIndex(r->start, start)) return -1; in PySlice_GetIndicesEx()
171 if (!_PyEval_SliceIndex(r->stop, stop)) return -1; in PySlice_GetIndicesEx()
Dtupleobject.c518 _PyEval_SliceIndex, &start, in tupleindex()
519 _PyEval_SliceIndex, &stop)) in tupleindex()
Dlistobject.c2287 _PyEval_SliceIndex, &start, in listindex()
2288 _PyEval_SliceIndex, &stop)) in listindex()
/external/python/cpython3/Objects/stringlib/
Dfind.h107 if (!_PyEval_SliceIndex(obj_start, &tmp_start)) in STRINGLIB()
110 if (!_PyEval_SliceIndex(obj_end, &tmp_end)) in STRINGLIB()
/external/python/cpython2/Objects/stringlib/
Dfind.h129 if (!_PyEval_SliceIndex(obj_start, &tmp_start)) in stringlib_parse_args_finds()
132 if (!_PyEval_SliceIndex(obj_end, &tmp_end)) in stringlib_parse_args_finds()
/external/python/cpython3/Objects/
Dsliceobject.c204 if (!_PyEval_SliceIndex(r->step, step)) return -1; in PySlice_Unpack()
223 if (!_PyEval_SliceIndex(r->start, start)) return -1; in PySlice_Unpack()
230 if (!_PyEval_SliceIndex(r->stop, stop)) return -1; in PySlice_Unpack()
Dtupleobject.c525 _PyEval_SliceIndex, &start, in tupleindex()
526 _PyEval_SliceIndex, &stop)) in tupleindex()
Dlistobject.c2156 _PyEval_SliceIndex, &start, in listindex()
2157 _PyEval_SliceIndex, &stop)) in listindex()
/external/python/cpython2/Include/
Dceval.h147 PyAPI_FUNC(int) _PyEval_SliceIndex(PyObject *, Py_ssize_t *);
/external/python/cpython3/Include/
Dceval.h218 PyAPI_FUNC(int) _PyEval_SliceIndex(PyObject *, Py_ssize_t *);
/external/python/cpython2/Python/
Dceval.c4685 _PyEval_SliceIndex(PyObject *v, Py_ssize_t *pi) in _PyEval_SliceIndex() function
4724 if (!_PyEval_SliceIndex(v, &ilow)) in apply_slice()
4726 if (!_PyEval_SliceIndex(w, &ihigh)) in apply_slice()
4751 if (!_PyEval_SliceIndex(v, &ilow)) in assign_slice()
4753 if (!_PyEval_SliceIndex(w, &ihigh)) in assign_slice()
/external/python/cpython2/PC/os2emx/
Dpython27.def859 "_PyEval_SliceIndex"
/external/python/cpython3/Modules/
D_collectionsmodule.c1054 _PyEval_SliceIndex, &start, in deque_index()
1055 _PyEval_SliceIndex, &stop)) in deque_index()
/external/python/cpython3/Python/
Dceval.c5082 _PyEval_SliceIndex(PyObject *v, Py_ssize_t *pi) in _PyEval_SliceIndex() function