Home | History | Annotate | Download | only in latin

Lines Matching refs:selEnd

216      * @param selEnd the end position of the selection within the text field. This could be
223 int selStart, int selEnd, String wordSeparators) {
224 if (selStart == selEnd) {
232 selWord.end = selEnd + range.charsAfter;
249 CharSequence touching = getSelectedText(ic, selStart, selEnd);
261 selWord.end = selEnd;
285 * Returns the selected text between the selStart and selEnd positions.
287 private static CharSequence getSelectedText(InputConnection ic, int selStart, int selEnd) {
309 ic.setSelection(selStart, selEnd);
310 result = ic.getTextAfterCursor(selEnd - selStart, 0);
311 ic.setSelection(selStart, selEnd);