Searched refs:oldSelEnd (Results 1 - 6 of 6) sorted by relevance
/packages/services/Car/car-support-lib/src/android/support/car/input/ |
H A D | CarEditableListener.java | 27 * @param oldSelEnd the old selection ending index 31 void onUpdateSelection(int oldSelStart, int oldSelEnd, int newSelStart, int newSelEnd); argument
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
H A D | RichInputConnection.java | 868 * @param oldSelEnd The value of the old selection end in the update. 873 final int oldSelEnd, final int newSelEnd) { 881 if (mExpectedSelStart == oldSelStart && mExpectedSelEnd == oldSelEnd 882 && (oldSelStart != newSelStart || oldSelEnd != newSelEnd)) return false; 885 // and mExpectedSelStart, and 3) newSelEnd is between oldSelEnd and mExpectedSelEnd, then 889 && (newSelEnd - oldSelEnd) * (mExpectedSelEnd - newSelEnd) >= 0; 872 isBelatedExpectedUpdate(final int oldSelStart, final int newSelStart, final int oldSelEnd, final int newSelEnd) argument
|
H A D | LatinIME.java | 1039 public void onUpdateSelection(final int oldSelStart, final int oldSelEnd, argument 1042 super.onUpdateSelection(oldSelStart, oldSelEnd, newSelStart, newSelEnd, 1045 Log.i(TAG, "onUpdateSelection: oss=" + oldSelStart + ", ose=" + oldSelEnd 1056 && mInputLogic.onUpdateSelection(oldSelStart, oldSelEnd, newSelStart, newSelEnd,
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/inputlogic/ |
H A D | InputLogic.java | 347 * @param oldSelEnd old selection end 353 public boolean onUpdateSelection(final int oldSelStart, final int oldSelEnd, argument 355 if (mConnection.isBelatedExpectedUpdate(oldSelStart, newSelStart, oldSelEnd, newSelEnd)) { 367 oldSelStart != newSelStart || oldSelEnd != newSelEnd // selection changed 369 final boolean hasOrHadSelection = (oldSelStart != oldSelEnd || newSelStart != newSelEnd);
|
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
H A D | OpenWnnEN.java | 362 @Override public void onUpdateSelection(int oldSelStart, int oldSelEnd, argument
|
H A D | OpenWnnJAJP.java | 608 @Override public void onUpdateSelection(int oldSelStart, int oldSelEnd, int newSelStart, int newSelEnd, int candidatesStart, int candidatesEnd) { argument 641 if ((((newSelEnd < oldSelEnd) || (commitEnd < newSelEnd)) && clearCommitInfo())
|
Completed in 1016 milliseconds