Searched defs:digit (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DDoubleDigitManager.java22 * Provides callbacks indicating the steps in two digit pressing within a
35 * @param timeoutInMillis How long after the first digit is pressed does
36 * the user have to press the second digit?
45 * Report to this manager that a digit was pressed.
46 * @param digit
48 public void reportDigit(int digit) { argument
50 intermediateDigit = digit;
61 if (!mCallBack.singleDigitIntermediate(digit)) {
63 // this wasn't a good candidate for the intermediate digit,
64 // make it the final digit (sinc
86 singleDigitIntermediate(int digit) argument
95 singleDigitFinal(int digit) argument
[all...]
/frameworks/policies/base/phone/com/android/internal/policy/impl/
H A DSimUnlockScreen.java271 private void reportDigit(int digit) { argument
278 mPinText.append(Integer.toString(digit));
279 mEnteredPin[mEnteredDigits++] = digit;
370 final int digit = checkDigit(v);
371 if (digit >= 0) {
373 reportDigit(digit);
378 int digit = -1;
380 digit = 0;
382 digit = 1;
384 digit
[all...]
/frameworks/base/core/java/android/text/format/
H A DDateUtils.java747 private static char toDigitChar(long digit) { argument
748 return (char) (digit + '0');

Completed in 8881 milliseconds