Home
last modified time | relevance | path

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

/aosp12/frameworks/base/core/java/android/net/
H A DUriCodec.java129 int newDigit = hexCharToValue(c); in appendDecoded() local
130 if (newDigit < 0) { in appendDecoded()
141 hexValue = (byte) (hexValue * 0x10 + newDigit); in appendDecoded()
/aosp12/packages/apps/Dialer/java/com/android/dialer/dialpadview/
H A DDialpadFragment.java266 /* package */ static boolean canAddDigit(CharSequence digits, int start, int end, char newDigit) { in canAddDigit() argument
267 if (newDigit != WAIT && newDigit != PAUSE) { in canAddDigit()
287 if (newDigit == WAIT) { in canAddDigit()
1442 private void updateDialString(char newDigit) { in updateDialString() argument
1443 if (newDigit != WAIT && newDigit != PAUSE) { in updateDialString()
1463 if (canAddDigit(digits, selectionStart, selectionEnd, newDigit)) { in updateDialString()
1464 digits.replace(selectionStart, selectionEnd, Character.toString(newDigit)); in updateDialString()