Home | History | Annotate | Download | only in dialpad

Lines Matching refs:WAIT

157     private static final char WAIT = ';';
1454 updateDialString(WAIT);
1467 * or Wait character (;).
1470 if (newDigit != WAIT && newDigit != PAUSE) {
1472 "Not expected for anything other than PAUSE & WAIT");
1556 * Only prevents input of WAIT and PAUSE digits at an unsupported position.
1562 if(newDigit != WAIT && newDigit != PAUSE) {
1564 "Should not be called for anything other than PAUSE & WAIT");
1578 if (newDigit == WAIT) {
1579 // preceding char is ';' (WAIT)
1580 if (digits.charAt(start - 1) == WAIT) return false;
1582 // next char is ';' (WAIT)
1583 if ((digits.length() > end) && (digits.charAt(end) == WAIT)) return false;