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

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Dictionary.java 97 * @param typedWord the word to compare with
100 protected boolean same(final char[] word, final int length, final CharSequence typedWord) {
101 if (typedWord.length() != length) {
105 if (word[i] != typedWord.charAt(i)) {
LastComposedWord.java 59 final int[] yCoordinates, final String typedWord, final String committedWord,
64 mTypedWord = typedWord;
Suggest.java 257 final String typedWord = wordComposer.getTypedWord();
259 ? typedWord.substring(0, typedWord.length() - mTrailingSingleQuotesCount)
260 : typedWord;
262 LatinImeLogger.onAddSuggestedWord(typedWord, Suggest.DIC_USER_TYPED, Dictionary.UNIGRAM);
346 mSuggestions.add(0, new SuggestedWordInfo(typedWord, SuggestedWordInfo.MAX_SCORE));
351 suggestionsList = getSuggestionsInfoListWithDebugInfo(typedWord, mSuggestions);
378 && Suggest.shouldBlockAutoCorrectionBySafetyNet(typedWord,
409 final String typedWord, final ArrayList<SuggestedWordInfo> suggestions) {
421 typedWord, cur.toString(), cur.mScore)
    [all...]
SuggestedWords.java 103 final CharSequence typedWord, final SuggestedWords previousSuggestions) {
106 suggestionsList.add(new SuggestedWordInfo(typedWord, SuggestedWordInfo.MAX_SCORE));
107 alreadySeen.add(typedWord.toString());
ResearchLogger.java 484 public static void latinIME_commitCurrentAutoCorrection(final String typedWord,
487 if (typedWord.equals(autoCorrection)) {
488 getInstance().logCorrection("[----]", typedWord, autoCorrection, -1);
490 getInstance().logCorrection("[Auto]", typedWord, autoCorrection, -1);
495 public static void latinIME_commitText(final CharSequence typedWord) {
497 logUnstructured("LatinIME_commitText", typedWord.toString());
LatinIME.java     [all...]
Utils.java 454 public static void onAutoCorrection(final String typedWord, final String correctedWord,
456 if (TextUtils.isEmpty(typedWord)) return;
457 LatinImeLogger.logOnAutoCorrection(typedWord, correctedWord, separatorCode);

Completed in 83 milliseconds