Home
last modified time | relevance | path

Searched refs:selectionEnd (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Messaging/src/com/android/messaging/ui/
DPlainTextEditText.java51 int selectionEnd = getSelectionEnd(); in onTextContextMenuItem() local
71 selectionEnd = selectionStart; in onTextContextMenuItem()
79 setSelection(selectionStart, selectionEnd); in onTextContextMenuItem()
/packages/apps/Dialer/java/com/android/dialer/dialpadview/
DDialpadFragment.java1448 int selectionEnd; in updateDialString() local
1455 selectionEnd = Math.max(anchor, point); in updateDialString()
1458 selectionStart = selectionEnd = this.digits.length(); in updateDialString()
1463 if (canAddDigit(digits, selectionStart, selectionEnd, newDigit)) { in updateDialString()
1464 digits.replace(selectionStart, selectionEnd, Character.toString(newDigit)); in updateDialString()
1466 if (selectionStart != selectionEnd) { in updateDialString()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/inputlogic/
DInputLogic.java1396 final int selectionEnd = mConnection.getExpectedSelectionEnd(); in performRecapitalization() local
1397 final int numCharsSelected = selectionEnd - selectionStart; in performRecapitalization()
1405 || !mRecapitalizeStatus.isSetAt(selectionStart, selectionEnd)) { in performRecapitalization()
1409 mRecapitalizeStatus.start(selectionStart, selectionEnd, selectedText.toString(), in performRecapitalization()
1417 mConnection.setSelection(selectionEnd, selectionEnd); in performRecapitalization()