Lines Matching defs:current

58  * current value. Pressing/long pressing the up and down buttons increments and
59 * decrements the current value respectively. Touching the input filed shows a
61 * of the current value. Sliding motions up or down hide the buttons and the
94 * the current value by one, i.e. increment or decrement.
206 * The text for showing the current value.
266 * Listener to be notified upon current value change.
276 * Formatter for for displaying the current value.
314 * The current offset of the scroll selector.
344 * Handle to the reusable command for changing the current value from long
435 * The current scroll state of the number picker.
450 * Interface to listen for changes of the current value.
455 * Called upon a change of the current value.
488 * @param scrollState The current scroll state. One of
497 * Interface used to format current value into a string for presentation.
502 * Formats a string representation of the current value.
981 * Sets the listener to be notified on change of the current value.
999 * Set the formatter to be used for formatting the current value.
1020 * Set the current value for the number picker.
1024 * current value is set to the {@link NumberPicker#getMinValue()} value.
1029 * current value is set to the {@link NumberPicker#getMaxValue()} value.
1034 * current value is set to the {@link NumberPicker#getMaxValue()} value.
1039 * current value is set to the {@link NumberPicker#getMinValue()} value.
1042 * @param value The current value.
1081 int current = mMaxValue;
1082 while (current > 0) {
1084 current = current / 10;
1406 * @param measureSpec The current measure spec.
1426 int current = getValue();
1428 int selectorIndex = current + (i - SELECTOR_MIDDLE_ITEM_INDEX);
1438 * Sets the current value of this NumberPicker, and sets mPrevious to the
1439 * previous value. If current is greater than mEnd less than mStart, the
1443 * @param current the new value of the NumberPicker
1445 private void changeCurrent(int current) {
1446 if (mValue == current) {
1451 current = getWrappedSelectorIndex(current);
1454 setValue(current);
1455 notifyChange(previous, current);
1459 * Changes the current value by one which is increment or
1489 * Ensures that if we are in the process of changing the current value
1740 int current = getSelectedPos(str.toString());
1741 changeCurrent(current);
1747 * the string corresponding to the index specified by the current value will
1753 * If we don't have displayed values then use the current number else
1754 * find the correct value in the displayed values for the current
1775 private void notifyChange(int previous, int current) {
1782 * Posts a command for changing the current value by one.
1974 * Command for changing the current value from a long press by one.