Searched defs:digit (Results 1 - 8 of 8) 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/base/telecomm/java/android/telecom/
H A DInCallAdapter.java172 * @param digit A character representing the DTMF digit for which to play the tone. This
175 public void playDtmfTone(String callId, char digit) { argument
177 mAdapter.playDtmfTone(callId, digit);
H A DRemoteConference.java490 * @param digit The digit for which to play a DTMF tone.
492 public void playDtmfTone(char digit) { argument
494 mConnectionService.playDtmfTone(mId, digit, null /*Session.Info*/);
H A DConnectionService.java466 public void playDtmfTone(String callId, char digit, Session.Info sessionInfo) {
470 args.arg1 = digit;
1693 private void playDtmfTone(String callId, char digit) { argument
1694 Log.d(this, "playDtmfTone %s %c", callId, digit);
1696 findConnectionForAction(callId, "playDtmfTone").onPlayDtmfTone(digit);
1698 findConferenceForAction(callId, "playDtmfTone").onPlayDtmfTone(digit);
H A DRemoteConnection.java990 * @param digit A character representing the DTMF digit for which to play the tone. This
993 public void playDtmfTone(char digit) { argument
996 mConnectionService.playDtmfTone(mConnectionId, digit, null /*Session.Info*/);
H A DCall.java1354 * @param digit A character representing the DTMF digit for which to play the tone. This
1357 public void playDtmfTone(char digit) { argument
1358 mInCallAdapter.playDtmfTone(mTelecomCallId, digit);
/frameworks/native/libs/input/
H A DKeyCharacterMap.cpp1121 char16_t digit = 0; local
1127 digit = ch;
1135 key->number = digit ? digit : symbol;
1207 int digit; local
1209 digit = ch - '0';
1211 digit = ch - 'A' + 10;
1213 digit = ch - 'a' + 10;
1217 *outCharacter = (*outCharacter << 4) | digit;
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 127 milliseconds