Searched refs:selEnd (Results 1 - 3 of 3) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/mail/compose/
H A DBodyView.java45 protected void onSelectionChanged(int selStart, int selEnd) { argument
47 if (mSelectionListener.onSelectionChanged(selStart, selEnd)) {
51 super.onSelectionChanged(selStart, selEnd);
/packages/apps/Email/src/com/android/email/activity/
H A DComposeActivityEmail.java56 final int selEnd = mBodyView.getSelectionEnd();
59 if (selEnd >= 0 && selStart >= 0) {
62 final int replaceStart = selStart < selEnd ? selStart : selEnd;
63 final int replaceEnd = selStart < selEnd ? selEnd : selStart;
/packages/services/Car/car-support-lib/src/android/support/car/input/
H A DCarRestrictedEditText.java80 protected void onSelectionChanged(int selStart, int selEnd) { argument
86 mCarEditableListener.onUpdateSelection(mLastSelStart, mLastSelEnd, selStart, selEnd);
89 mLastSelEnd = selEnd;

Completed in 125 milliseconds