Home | History | Annotate | Download | only in widget

Lines Matching defs:nextValue

1138             final int nextValue = (initialStep + step) * stepSize;
1139 final int clampedValue = MathUtils.constrain(nextValue, minValue, maxValue);
1252 final int nextValue = value + 1;
1254 if (nextValue <= max) {
1255 return makeId(type, nextValue);
1260 final int nextValue = snapValue + MINUTE_INCREMENT;
1261 if (value < current && nextValue > current) {
1264 nextValue < MINUTES_IN_CIRCLE) {
1265 return makeId(type, nextValue);