Searched refs:LastComposedWord (Results 1 – 4 of 4) sorted by relevance
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
D | LastComposedWord.java | 31 public final class LastComposedWord { class 60 public static final LastComposedWord NOT_A_COMPOSED_WORD = 61 new LastComposedWord(new ArrayList<Event>(), null, "", "", 66 public LastComposedWord(final ArrayList<Event> events, in LastComposedWord() method in LastComposedWord
|
D | WordComposer.java | 418 public LastComposedWord commitWord(final int type, final CharSequence committedWord, in commitWord() 423 final LastComposedWord lastComposedWord = new LastComposedWord(mEvents, in commitWord() 427 if (type != LastComposedWord.COMMIT_TYPE_DECIDED_WORD in commitWord() 428 && type != LastComposedWord.COMMIT_TYPE_MANUAL_PICK) { in commitWord() 447 public void resumeSuggestionOnLastComposedWord(final LastComposedWord lastComposedWord) { in resumeSuggestionOnLastComposedWord()
|
D | LatinIME.java | 1827 mInputLogic.commitTyped(mSettings.getCurrent(), LastComposedWord.NOT_A_SEPARATOR); in launchSettings()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/inputlogic/ |
D | InputLogic.java | 39 import com.android.inputmethod.latin.LastComposedWord; 90 public LastComposedWord mLastComposedWord = LastComposedWord.NOT_A_COMPOSED_WORD; 195 commitTyped(settingsValues, LastComposedWord.NOT_A_SEPARATOR); in onOrientationChange() 322 commitChosenWord(settingsValues, suggestion, LastComposedWord.COMMIT_TYPE_MANUAL_PICK, in onPickSuggestionManually() 323 LastComposedWord.NOT_A_SEPARATOR); in onPickSuggestionManually() 519 commitCurrentAutoCorrection(settingsValues, LastComposedWord.NOT_A_SEPARATOR, in onStartBatchInput() 522 commitTyped(settingsValues, LastComposedWord.NOT_A_SEPARATOR); in onStartBatchInput() 781 commitTyped(inputTransaction.mSettingsValues, LastComposedWord.NOT_A_SEPARATOR); in handleNonSpecialCharacterEvent() 901 final String separator = shouldAvoidSendingCode ? LastComposedWord.NOT_A_SEPARATOR in handleSeparatorEvent() 1719 mLastComposedWord = LastComposedWord.NOT_A_COMPOSED_WORD; in revertCommit() [all …]
|