Lines Matching defs:start

32 [clinic start generated code]*/
71 [clinic start generated code]*/
211 [clinic start generated code]*/
431 [clinic start generated code]*/
720 [clinic start generated code]*/
899 [clinic start generated code]*/
1009 [clinic start generated code]*/
1087 [clinic start generated code]*/
1273 long start;
1285 [clinic start generated code]*/
1308 lz->start = 0;
1343 if (lz->start == 1)
1354 lz->start = 1;
1366 return Py_BuildValue("O(OO)l", Py_TYPE(lz), lz->func, lz->it, lz->start);
1372 int start = PyObject_IsTrue(state);
1373 if (start < 0)
1375 lz->start = start;
1448 [clinic start generated code]*/
1609 Py_ssize_t start=0, stop=-1, step=1;
1636 start = PyNumber_AsSsize_t(a1, PyExc_OverflowError);
1637 if (start == -1 && PyErr_Occurred())
1651 if (start<0 || stop<-1) {
1682 lz->next = start;
1798 islice(iterable, start, stop[, step]) --> islice object\n\
1801 iterable. If start is specified, will skip all preceding elements;\n\
1802 otherwise, start defaults to zero. Step defaults to one. If\n\
1867 [clinic start generated code]*/
2039 [clinic start generated code]*/
2593 [clinic start generated code]*/
2929 [clinic start generated code]*/
3257 [clinic start generated code]*/
3423 /* start with i, the leftmost element that changed */
3621 [clinic start generated code]*/
3833 [clinic start generated code]*/
3991 [clinic start generated code]*/
4155 start as long_cnt: object(c_default="NULL") = 0
4165 [clinic start generated code]*/
4186 /* If not specified, start defaults to 0 */
4813 count(start=0, step=1) --> start, start+step, start+2*step, ...\n\
4825 islice(seq, [start,] stop [, step]) --> elements from\n\
4826 seq[start:stop:step]\n\