Searched defs:newSelEnd (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodSession.java54 * @param newSelEnd The new text offset of the cursor selection
62 int newSelStart, int newSelEnd,
61 updateSelection(int oldSelStart, int oldSelEnd, int newSelStart, int newSelEnd, int candidatesStart, int candidatesEnd) argument
/frameworks/base/core/java/android/inputmethodservice/
H A DIInputMethodSessionWrapper.java164 int newSelStart, int newSelEnd, int candidatesStart, int candidatesEnd) {
166 oldSelStart, oldSelEnd, newSelStart, newSelEnd,
163 updateSelection(int oldSelStart, int oldSelEnd, int newSelStart, int newSelEnd, int candidatesStart, int candidatesEnd) argument
H A DInputMethodService.java441 int newSelStart, int newSelEnd,
447 newSelStart, newSelEnd, candidatesStart, candidatesEnd);
1515 int newSelStart, int newSelEnd,
1522 newSelEnd -= off;
1526 if (newSelEnd < 0) newSelEnd = 0;
1527 else if (newSelEnd > len) newSelEnd = len;
1528 eet.setSelection(newSelStart, newSelEnd);
440 updateSelection(int oldSelStart, int oldSelEnd, int newSelStart, int newSelEnd, int candidatesStart, int candidatesEnd) argument
1514 onUpdateSelection(int oldSelStart, int oldSelEnd, int newSelStart, int newSelEnd, int candidatesStart, int candidatesEnd) argument

Completed in 84 milliseconds