Home
last modified time | relevance | path

Searched refs:newSelStart (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/core/java/android/accessibilityservice/
DAccessibilityInputMethodSessionWrapper.java51 int newSelStart, int newSelEnd, int candidatesStart, int candidatesEnd) { in updateSelection() argument
53 doUpdateSelection(oldSelStart, oldSelEnd, newSelStart, newSelEnd, candidatesStart, in updateSelection()
56 mHandler.post(() -> doUpdateSelection(oldSelStart, oldSelEnd, newSelStart, in updateSelection()
62 int newSelStart, int newSelEnd, int candidatesStart, int candidatesEnd) { in doUpdateSelection() argument
65 session.updateSelection(oldSelStart, oldSelEnd, newSelStart, newSelEnd, candidatesStart, in doUpdateSelection()
DInputMethod.java134 public void onUpdateSelection(int oldSelStart, int oldSelEnd, int newSelStart, in onUpdateSelection() argument
509 public void updateSelection(int oldSelStart, int oldSelEnd, int newSelStart, in updateSelection() argument
512 InputMethod.this.onUpdateSelection(oldSelEnd, oldSelEnd, newSelStart, in updateSelection()
DAccessibilityInputMethodSession.java26 void updateSelection(int oldSelStart, int oldSelEnd, int newSelStart, int newSelEnd, in updateSelection() argument
/frameworks/base/core/java/com/android/internal/inputmethod/
DIAccessibilityInputMethodSession.aidl35 void updateSelection(int oldSelStart, int oldSelEnd, int newSelStart, int newSelEnd, in updateSelection() argument
/frameworks/base/core/java/com/android/internal/view/
DIInputMethodSession.aidl38 int newSelStart, int newSelEnd, in updateSelection() argument
/frameworks/base/core/java/android/view/inputmethod/
DInputMethodSession.java65 int newSelStart, int newSelEnd, in updateSelection() argument
/frameworks/base/core/java/android/inputmethodservice/
DIInputMethodSessionWrapper.java183 int newSelStart, int newSelEnd, int candidatesStart, int candidatesEnd) { in updateSelection() argument
185 oldSelStart, oldSelEnd, newSelStart, newSelEnd, in updateSelection()
DInputMethodService.java1180 int newSelStart, int newSelEnd, in updateSelection() argument
1186 newSelStart, newSelEnd, candidatesStart, candidatesEnd); in updateSelection()
2897 int newSelStart, int newSelEnd, in onUpdateSelection() argument
2903 newSelStart -= off; in onUpdateSelection()
2906 if (newSelStart < 0) newSelStart = 0; in onUpdateSelection()
2907 else if (newSelStart > len) newSelStart = len; in onUpdateSelection()
2910 eet.setSelection(newSelStart, newSelEnd); in onUpdateSelection()
/frameworks/base/core/java/android/widget/
DTextView.java11193 int newSelStart = -1, newSelEnd = -1; in spanChange() local
11211 newSelStart = newStart; in spanChange()
11224 if (newSelStart < 0) { in spanChange()
11225 newSelStart = Selection.getSelectionStart(buf); in spanChange()
11239 onSelectionChanged(newSelStart, newSelEnd); in spanChange()