Searched refs:onUpdateSelection (Results 1 - 8 of 8) sorted by relevance

/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
H A DBlueUnderlineTests.java73 mLatinIME.onUpdateSelection(0, 0, typedLength + 1, typedLength + 1, -1, -1);
98 // Simulate the onUpdateSelection() event
99 mLatinIME.onUpdateSelection(0, 0, typedLength, typedLength, -1, -1);
105 mLatinIME.onUpdateSelection(typedLength, typedLength,
118 // Simulate the onUpdateSelection() event
119 mLatinIME.onUpdateSelection(0, 0, STRING_TO_TYPE.length(), STRING_TO_TYPE.length(), -1, -1);
H A DInputLogicTestsLanguageWithoutSpaces.java75 mLatinIME.onUpdateSelection(0, 0, typedLength, typedLength, -1, -1);
77 mLatinIME.onUpdateSelection(typedLength, typedLength,
98 mLatinIME.onUpdateSelection(0, 0, typedLength, typedLength, 0, typedLength);
102 mLatinIME.onUpdateSelection(typedLength, typedLength,
H A DInputLogicTests.java119 mLatinIME.onUpdateSelection(0, 0, typedLength, typedLength, -1, -1);
122 mLatinIME.onUpdateSelection(typedLength, typedLength,
140 mLatinIME.onUpdateSelection(0, 0, typedLength, typedLength, -1, -1);
143 mLatinIME.onUpdateSelection(typedLength, typedLength,
H A DInputTestsBase.java429 // DO NOT CALL LatinIME#onUpdateSelection IF YOU WANT TO USE THOSE
432 * Move the cached cursor position to the passed position and send onUpdateSelection to LatinIME
436 mLatinIME.onUpdateSelection(mLastCursorPos, mLastCursorPos, position, position, -1, -1);
442 * Move the cached cursor position by the passed amount and send onUpdateSelection to LatinIME
457 * Move the cached cursor position to the end of the line and send onUpdateSelection to LatinIME
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DLatinIME.java1001 public void onUpdateSelection(final int oldSelStart, final int oldSelEnd, method in class:LatinIME
1004 super.onUpdateSelection(oldSelStart, oldSelEnd, newSelStart, newSelEnd,
1007 Log.i(TAG, "onUpdateSelection: oss=" + oldSelStart + ", ose=" + oldSelEnd
1018 && mInputLogic.onUpdateSelection(oldSelStart, oldSelEnd, newSelStart, newSelEnd,
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DOpenWnnEN.java361 /** @see jp.co.omronsoft.openwnn.OpenWnn#onUpdateSelection */
362 @Override public void onUpdateSelection(int oldSelStart, int oldSelEnd, method in class:OpenWnnEN
H A DOpenWnnJAJP.java607 /** @see jp.co.omronsoft.openwnn.OpenWnn#onUpdateSelection */
608 @Override public void onUpdateSelection(int oldSelStart, int oldSelEnd, int newSelStart, int newSelEnd, int candidatesStart, int candidatesEnd) { method in class:OpenWnnJAJP
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/inputlogic/
H A DInputLogic.java353 public boolean onUpdateSelection(final int oldSelStart, final int oldSelEnd, method in class:InputLogic
374 // onUpdateSelection. In this case, we may have set a composition, and when we're here
977 // Set punctuation right away. onUpdateSelection will fire but tests whether it is

Completed in 116 milliseconds