Searched refs:newDigit (Results 1 – 2 of 2) sorted by relevance
129 int newDigit = hexCharToValue(c); in appendDecoded() local130 if (newDigit < 0) { in appendDecoded()141 hexValue = (byte) (hexValue * 0x10 + newDigit); in appendDecoded()
266 /* package */ static boolean canAddDigit(CharSequence digits, int start, int end, char newDigit) { in canAddDigit() argument267 if (newDigit != WAIT && newDigit != PAUSE) { in canAddDigit()287 if (newDigit == WAIT) { in canAddDigit()1442 private void updateDialString(char newDigit) { in updateDialString() argument1443 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()