Home
last modified time | relevance | path

Searched refs:RADIX (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
DNumericTextView.java36 private static final int RADIX = 10; field in NumericTextView
37 private static final double LOG_RADIX = Math.log(RADIX);
267 mValue /= RADIX; in handleKeyUp()
273 final int newValue = mValue * RADIX + keyValue; in handleKeyUp()
297 final boolean isFinished = mCount >= mMaxCount || mValue * RADIX > mMaxValue; in handleKeyUp()