Home | History | Annotate | Download | only in dialpadview

Lines Matching defs:selectionStart

1351     int selectionStart;
1358 selectionStart = Math.min(anchor, point);
1361 if (selectionStart == -1) {
1362 selectionStart = selectionEnd = this.digits.length();
1367 if (canAddDigit(digits, selectionStart, selectionEnd, newDigit)) {
1368 digits.replace(selectionStart, selectionEnd, Character.toString(newDigit));
1370 if (selectionStart != selectionEnd) {
1372 this.digits.setSelection(selectionStart + 1);