Searched refs:oldSelStart (Results 1 - 5 of 5) sorted by path

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DLatinIME.java1020 public void onUpdateSelection(final int oldSelStart, final int oldSelEnd, argument
1023 super.onUpdateSelection(oldSelStart, oldSelEnd, newSelStart, newSelEnd,
1026 Log.i(TAG, "onUpdateSelection: oss=" + oldSelStart + ", ose=" + oldSelEnd
1036 && mInputLogic.onUpdateSelection(oldSelStart, oldSelEnd, newSelStart, newSelEnd,
H A DRichInputConnection.java800 * @param oldSelStart The value of the old selection in the update.
806 public boolean isBelatedExpectedUpdate(final int oldSelStart, final int newSelStart, argument
815 if (mExpectedSelStart == oldSelStart && mExpectedSelEnd == oldSelEnd
816 && (oldSelStart != newSelStart || oldSelEnd != newSelEnd)) return false;
818 // with updates. If 1) the selection is a cursor, 2) newSelStart is between oldSelStart
822 && (newSelStart - oldSelStart) * (mExpectedSelStart - newSelStart) >= 0
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/inputlogic/
H A DInputLogic.java357 * @param oldSelStart old selection start
364 public boolean onUpdateSelection(final int oldSelStart, final int oldSelEnd, argument
366 if (mConnection.isBelatedExpectedUpdate(oldSelStart, newSelStart, oldSelEnd, newSelEnd)) {
378 oldSelStart != newSelStart || oldSelEnd != newSelEnd // selection changed
380 final boolean hasOrHadSelection = (oldSelStart != oldSelEnd || newSelStart != newSelEnd);
381 final int moveAmount = newSelStart - oldSelStart;
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DOpenWnnEN.java362 @Override public void onUpdateSelection(int oldSelStart, int oldSelEnd, argument
H A DOpenWnnJAJP.java608 @Override public void onUpdateSelection(int oldSelStart, int oldSelEnd, int newSelStart, int newSelEnd, int candidatesStart, int candidatesEnd) { argument

Completed in 133 milliseconds