HomeSort by relevance Sort by last modified time
    Searched refs:typedWord (Results 1 - 9 of 9) sorted by null

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
LatinImeLoggerUtils.java 51 public static void onAutoCorrection(final String typedWord, final String correctedWord,
54 if (!isBatchMode && TextUtils.isEmpty(typedWord)) {
63 LatinImeLogger.logOnAutoCorrectionForTyping(typedWord, correctedWord, codePoint);
AutoCorrectionUtils.java 109 public static boolean shouldBlockAutoCorrectionBySafetyNet(final String typedWord,
117 final int typedWordLength = typedWord.length();
123 final int distance = BinaryDictionary.editDistance(typedWord, suggestion);
130 Log.e(TAG, "Safety net: before = " + typedWord + ", after = " + suggestion);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Dictionary.java 110 * @param typedWord the word to compare with
113 protected boolean same(final char[] word, final int length, final String typedWord) {
114 if (typedWord.length() != length) {
118 if (word[i] != typedWord.charAt(i)) {
LastComposedWord.java 61 final String typedWord, final String committedWord, final String separatorString,
67 mTypedWord = typedWord;
Suggest.java 245 final String typedWord = wordComposer.getTypedWord();
247 ? typedWord.substring(0, typedWord.length() - trailingSingleQuotesCount)
248 : typedWord;
249 LatinImeLogger.onAddSuggestedWord(typedWord, Dictionary.TYPE_USER_TYPED);
329 if (!TextUtils.isEmpty(typedWord)) {
330 suggestionsContainer.add(0, new SuggestedWordInfo(typedWord,
340 suggestionsList = getSuggestionsInfoListWithDebugInfo(typedWord, suggestionsContainer);
419 final String typedWord, final ArrayList<SuggestedWordInfo> suggestions) {
431 typedWord, cur.toString(), cur.mScore)
    [all...]
LatinIME.java 368 final String typedWord) {
372 new Pair<SuggestedWords, String>(suggestedWords, typedWord)).sendToTarget();
    [all...]
SuggestedWords.java 141 final String typedWord, final SuggestedWords previousSuggestions) {
144 suggestionsList.add(new SuggestedWordInfo(typedWord, SuggestedWordInfo.MAX_SCORE,
148 alreadySeen.add(typedWord.toString());
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
AccessibilityUtils.java 158 * @param typedWord the currently typed word
160 public void setAutoCorrection(final SuggestedWords suggestedWords, final String typedWord) {
163 mTypedWord = typedWord;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/
ResearchLogger.java     [all...]

Completed in 226 milliseconds