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

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DRichInputConnection.java178 * @param newSelEnd the new position of the selection end, as received from the system.
185 final int newSelEnd, final boolean shouldFinishComposition) {
187 mExpectedSelEnd = newSelEnd;
803 * @param newSelEnd The value of the new selection end in the update.
807 final int oldSelEnd, final int newSelEnd) {
810 if (mExpectedSelStart == newSelStart && mExpectedSelEnd == newSelEnd) return true;
812 // values, and one of newSelStart or newSelEnd is updated to a different value. In this
816 && (oldSelStart != newSelStart || oldSelEnd != newSelEnd)) return false;
819 // and mExpectedSelStart, and 3) newSelEnd is between oldSelEnd and mExpectedSelEnd, then
821 return (newSelStart == newSelEnd)
184 resetCachesUponCursorMoveAndReturnSuccess(final int newSelStart, final int newSelEnd, final boolean shouldFinishComposition) argument
806 isBelatedExpectedUpdate(final int oldSelStart, final int newSelStart, final int oldSelEnd, final int newSelEnd) argument
[all...]
H A DLatinIME.java1021 final int newSelStart, final int newSelEnd,
1023 super.onUpdateSelection(oldSelStart, oldSelEnd, newSelStart, newSelEnd,
1027 + ", nss=" + newSelStart + ", nse=" + newSelEnd
1036 && mInputLogic.onUpdateSelection(oldSelStart, oldSelEnd, newSelStart, newSelEnd,
1020 onUpdateSelection(final int oldSelStart, final int oldSelEnd, final int newSelStart, final int newSelEnd, final int composingSpanStart, final int composingSpanEnd) argument
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DOpenWnnEN.java363 int newSelStart, int newSelEnd, int candidatesStart,
362 onUpdateSelection(int oldSelStart, int oldSelEnd, int newSelStart, int newSelEnd, int candidatesStart, int candidatesEnd) argument
H A DOpenWnnJAJP.java608 @Override public void onUpdateSelection(int oldSelStart, int oldSelEnd, int newSelStart, int newSelEnd, int candidatesStart, int candidatesEnd) { argument
610 mComposingStartCursor = (candidatesStart < 0) ? newSelEnd : candidatesStart;
613 if (newSelStart != newSelEnd) {
641 if ((((newSelEnd < oldSelEnd) || (commitEnd < newSelEnd)) && clearCommitInfo())
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/inputlogic/
H A DInputLogic.java360 * @param newSelEnd new selection end
365 final int newSelStart, final int newSelEnd, final SettingsValues settingsValues) {
366 if (mConnection.isBelatedExpectedUpdate(oldSelStart, newSelStart, oldSelEnd, newSelEnd)) {
378 oldSelStart != newSelStart || oldSelEnd != newSelEnd // selection changed
380 final boolean hasOrHadSelection = (oldSelStart != oldSelEnd || newSelStart != newSelEnd);
407 resetEntireInputState(newSelStart, newSelEnd, false /* clearSuggestionStrip */);
414 newSelStart, newSelEnd, false /* shouldFinishComposition */);
1814 * @param newSelEnd the new selection end, in java characters.
1818 private void resetEntireInputState(final int newSelStart, final int newSelEnd, argument
1825 mConnection.resetCachesUponCursorMoveAndReturnSuccess(newSelStart, newSelEnd,
364 onUpdateSelection(final int oldSelStart, final int oldSelEnd, final int newSelStart, final int newSelEnd, final SettingsValues settingsValues) argument
[all...]

Completed in 448 milliseconds