Searched refs:newSelEnd (Results 1 - 6 of 6) sorted by relevance

/packages/services/Car/car-support-lib/src/android/support/car/input/
H A DCarEditableListener.java29 * @param newSelEnd the new 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 DRichInputConnection.java226 * @param newSelEnd the new position of the selection end, as received from the system.
233 final int newSelEnd, final boolean shouldFinishComposition) {
235 mExpectedSelEnd = newSelEnd;
869 * @param newSelEnd The value of the new selection end in the update.
873 final int oldSelEnd, final int newSelEnd) {
876 if (mExpectedSelStart == newSelStart && mExpectedSelEnd == newSelEnd) return true;
878 // values, and one of newSelStart or newSelEnd is updated to a different value. In this
882 && (oldSelStart != newSelStart || oldSelEnd != newSelEnd)) return false;
885 // and mExpectedSelStart, and 3) newSelEnd is between oldSelEnd and mExpectedSelEnd, then
887 return (newSelStart == newSelEnd)
232 resetCachesUponCursorMoveAndReturnSuccess(final int newSelStart, final int newSelEnd, final boolean shouldFinishComposition) argument
872 isBelatedExpectedUpdate(final int oldSelStart, final int newSelStart, final int oldSelEnd, final int newSelEnd) argument
[all...]
H A DLatinIME.java1040 final int newSelStart, final int newSelEnd,
1042 super.onUpdateSelection(oldSelStart, oldSelEnd, newSelStart, newSelEnd,
1046 + ", nss=" + newSelStart + ", nse=" + newSelEnd
1056 && mInputLogic.onUpdateSelection(oldSelStart, oldSelEnd, newSelStart, newSelEnd,
1039 onUpdateSelection(final int oldSelStart, final int oldSelEnd, final int newSelStart, final int newSelEnd, final int composingSpanStart, final int composingSpanEnd) argument
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/inputlogic/
H A DInputLogic.java349 * @param newSelEnd new selection end
354 final int newSelStart, final int newSelEnd, final SettingsValues settingsValues) {
355 if (mConnection.isBelatedExpectedUpdate(oldSelStart, newSelStart, oldSelEnd, newSelEnd)) {
367 oldSelStart != newSelStart || oldSelEnd != newSelEnd // selection changed
369 final boolean hasOrHadSelection = (oldSelStart != oldSelEnd || newSelStart != newSelEnd);
396 resetEntireInputState(newSelStart, newSelEnd, false /* clearSuggestionStrip */);
411 newSelStart, newSelEnd, false /* shouldFinishComposition */);
1877 * @param newSelEnd the new selection end, in java characters.
1881 private void resetEntireInputState(final int newSelStart, final int newSelEnd, argument
1888 mConnection.resetCachesUponCursorMoveAndReturnSuccess(newSelStart, newSelEnd,
353 onUpdateSelection(final int oldSelStart, final int oldSelEnd, final int newSelStart, final int newSelEnd, final SettingsValues settingsValues) argument
[all...]
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
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())
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

Completed in 225 milliseconds