Lines Matching defs:element
206 A function for computing the group category for each element.
207 If the key function is not specified or is None, the element itself
1284 Afterwards, return every element until the iterable is exhausted.
2357 first element from each pool. */
2496 PyObject *element = PyTuple_GET_ITEM(pool, lz->indices[i]);
2497 Py_INCREF(element);
2498 PyTuple_SET_ITEM(result, i, element);
2520 cycle in a manner similar to an odometer (with the rightmost element changing\n\
2578 Py_ssize_t *indices; /* one index per result element */
2820 PyObject *element = PyTuple_GET_ITEM(lz->pool, lz->indices[i]);
2821 Py_INCREF(element);
2822 PyTuple_SET_ITEM(result, i, element);
2915 Py_ssize_t *indices; /* one index per result element */
3148 PyObject *element = PyTuple_GET_ITEM(lz->pool, lz->indices[i]);
3149 Py_INCREF(element);
3150 PyTuple_SET_ITEM(result, i, element);
3242 Py_ssize_t *indices; /* one index per element in the pool */
3243 Py_ssize_t *cycles; /* one rollover counter per element in the result */
3423 /* start with i, the leftmost element that changed */
3540 PyObject *element = PyTuple_GET_ITEM(po->pool, po->indices[i]);
3541 Py_INCREF(element);
3542 PyTuple_SET_ITEM(result, i, element);
4379 PyObject *element;
4389 PyObject *element;
4397 &element, &cnt))
4406 Py_INCREF(element);
4407 ro->element = element;
4416 Py_XDECREF(ro->element);
4423 Py_VISIT(ro->element);
4434 Py_INCREF(ro->element);
4435 return ro->element;
4443 _PyType_Name(Py_TYPE(ro)), ro->element);
4446 _PyType_Name(Py_TYPE(ro)), ro->element,
4469 return Py_BuildValue("O(On)", Py_TYPE(ro), ro->element, ro->cnt);
4471 return Py_BuildValue("O(O)", Py_TYPE(ro), ro->element);
4755 the i-th element comes from the i-th iterable argument. The .__next__()\n\