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

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
AutoCorrection.java 87 final WhitelistDictionary whitelistDictionary =
88 (WhitelistDictionary)dictionaries.get(Suggest.DICT_KEY_WHITELIST);
90 if (whitelistDictionary != null
91 && whitelistDictionary.shouldForciblyAutoCorrectFrom(word)) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerService.java 41 import com.android.inputmethod.latin.WhitelistDictionary;
311 Dictionary whitelistDictionary = mWhitelistDictionaries.get(localeStr);
312 if (null == whitelistDictionary) {
313 whitelistDictionary = new WhitelistDictionary(this, locale);
314 mWhitelistDictionaries.put(localeStr, whitelistDictionary);
316 dictionaryCollection.addDictionary(whitelistDictionary);

Completed in 262 milliseconds