Lines Matching refs:values
581 PyObject *(values[LINKCELLS]);
625 value = tdo->values[i];
640 tdo->values[i] = value;
653 Py_VISIT(tdo->values[i]);
679 Py_CLEAR(tdo->values[i]);
698 /* create a temporary list of already iterated values */
699 PyObject *values = PyList_New(tdo->numread);
701 if (!values)
704 Py_INCREF(tdo->values[i]);
705 PyList_SET_ITEM(values, i, tdo->values[i]);
708 values,
716 values: object(subclass_of='&PyList_Type')
724 PyObject *values, PyObject *next)
736 len = PyList_GET_SIZE(values);
740 tdo->values[i] = PyList_GET_ITEM(values, i);
741 Py_INCREF(tdo->values[i]);
1800 Return an iterator whose next() method returns selected values from an\n\
1803 specified as another value, step determines how many values are\n\
1866 Return an iterator whose values are returned from the function evaluated with an argument tuple taken from the given sequence.
4157 Return a count object whose .__next__() method returns consecutive values.