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

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
SynchronouslyLoadedContactsBinaryDictionary.java 29 super(context, Suggest.DIC_CONTACTS, locale);
SynchronouslyLoadedContactsDictionary.java 27 super(context, Suggest.DIC_CONTACTS);
AutoCorrection.java 59 if (key.equals(Suggest.DICT_KEY_WHITELIST)) continue;
84 if (key.equals(Suggest.DICT_KEY_WHITELIST)) continue;
99 (WhitelistDictionary)dictionaries.get(Suggest.DICT_KEY_WHITELIST);
Suggest.java 37 public class Suggest implements Dictionary.WordCallback {
38 public static final String TAG = Suggest.class.getSimpleName();
93 public Suggest(final Context context, final Locale locale) {
97 /* package for test */ Suggest(final Context context, final File dictionary,
223 LatinImeLogger.onAddSuggestedWord("", Suggest.DIC_USER_TYPED, Dictionary.UNIGRAM);
262 LatinImeLogger.onAddSuggestedWord(typedWord, Suggest.DIC_USER_TYPED, Dictionary.UNIGRAM);
378 && Suggest.shouldBlockAutoCorrectionBySafetyNet(typedWord,
528 if (typedWordLength < Suggest.MINIMUM_SAFETY_NET_CHAR_LENGTH) {
WhitelistDictionary.java 40 super(context, Suggest.DIC_WHITELIST);
UserBinaryDictionary.java 61 super(context, getFilenameWithLocale(NAME, locale), Suggest.DIC_USER);
UserDictionary.java 63 super(context, Suggest.DIC_USER);
LatinIME.java 153 /* package for tests */ Suggest mSuggest;
479 mSuggest = new Suggest(this, subtypeLocale);
501 this, localeStr, Suggest.DIC_USER_HISTORY, mPrefs);
509 * does not depend on the locale, it can be reused across different instances of Suggest.
534 dictionaryToUse = new ContactsBinaryDictionary(this, Suggest.DIC_CONTACTS,
537 dictionaryToUse = new ContactsDictionary(this, Suggest.DIC_CONTACTS);
    [all...]
BinaryDictionary.java 74 // the Suggest class knows everything about every single dictionary.
75 mDicTypeId = Suggest.DIC_MAIN;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
SuggestionsView.java 64 import com.android.inputmethod.latin.Suggest;
78 // The maximum number of suggestions available. See {@link Suggest#mPrefMaxSuggestions}.
340 && Suggest.shouldBlockAutoCorrectionBySafetyNet(
    [all...]

Completed in 56 milliseconds