Home | History | Annotate | Download | only in dialpad

Lines Matching refs:newDigit

1562     private void updateDialString(char newDigit) {
1563 if(newDigit != WAIT && newDigit != PAUSE) {
1584 if (canAddDigit(digits, selectionStart, selectionEnd, newDigit)) {
1585 digits.replace(selectionStart, selectionEnd, Character.toString(newDigit));
1636 * Returns true of the newDigit parameter can be added at the current selection
1643 char newDigit) {
1644 if(newDigit != WAIT && newDigit != PAUSE) {
1660 if (newDigit == WAIT) {