Home
last modified time | relevance | path

Searched refs:onUpdateSelection (Results 1 – 6 of 6) sorted by relevance

/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
DBlueUnderlineTests.java73 mLatinIME.onUpdateSelection(0, 0, typedLength + 1, typedLength + 1, -1, -1); in testBlueUnderlineOnBackspace()
99 mLatinIME.onUpdateSelection(0, 0, typedLength, typedLength, -1, -1); in testBlueUnderlineDisappearsWhenCursorMoved()
105 mLatinIME.onUpdateSelection(typedLength, typedLength, in testBlueUnderlineDisappearsWhenCursorMoved()
119 mLatinIME.onUpdateSelection(0, 0, STRING_TO_TYPE.length(), STRING_TO_TYPE.length(), -1, -1); in testComposingStopsOnSpace()
DInputLogicTestsLanguageWithoutSpaces.java75 mLatinIME.onUpdateSelection(0, 0, typedLength, typedLength, -1, -1); in testStartComposingInsideText()
77 mLatinIME.onUpdateSelection(typedLength, typedLength, in testStartComposingInsideText()
98 mLatinIME.onUpdateSelection(0, 0, typedLength, typedLength, 0, typedLength); in testMovingCursorInsideWordAndType()
102 mLatinIME.onUpdateSelection(typedLength, typedLength, in testMovingCursorInsideWordAndType()
DInputLogicTests.java119 mLatinIME.onUpdateSelection(0, 0, typedLength, typedLength, -1, -1); in testDeleteSelection()
122 mLatinIME.onUpdateSelection(typedLength, typedLength, in testDeleteSelection()
140 mLatinIME.onUpdateSelection(0, 0, typedLength, typedLength, -1, -1); in testDeleteSelectionTwice()
143 mLatinIME.onUpdateSelection(typedLength, typedLength, in testDeleteSelectionTwice()
DInputTestsBase.java436 mLatinIME.onUpdateSelection(mLastCursorPos, mLastCursorPos, position, position, -1, -1); in sendUpdateForCursorMoveTo()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DLatinIME.java1104 public void onUpdateSelection(final int oldSelStart, final int oldSelEnd, in onUpdateSelection() method in LatinIME
1107 super.onUpdateSelection(oldSelStart, oldSelEnd, newSelStart, newSelEnd, in onUpdateSelection()
1121 && mInputLogic.onUpdateSelection(oldSelStart, oldSelEnd, newSelStart, newSelEnd, in onUpdateSelection()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/inputlogic/
DInputLogic.java353 public boolean onUpdateSelection(final int oldSelStart, final int oldSelEnd, in onUpdateSelection() method in InputLogic