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

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
UserHistoryDictionary.java 41 public class UserHistoryDictionary extends ExpandableDictionary {
42 private static final String TAG = "UserHistoryDictionary";
92 private final static ConcurrentHashMap<String, SoftReference<UserHistoryDictionary>>
93 sLangDictCache = new ConcurrentHashMap<String, SoftReference<UserHistoryDictionary>>();
117 public synchronized static UserHistoryDictionary getInstance(
121 final SoftReference<UserHistoryDictionary> ref = sLangDictCache.get(locale);
122 final UserHistoryDictionary dict = ref == null ? null : ref.get();
125 Log.w(TAG, "Use cached UserHistoryDictionary for " + locale);
130 final UserHistoryDictionary dict =
131 new UserHistoryDictionary(context, locale, dictTypeId, sp)
    [all...]
UserHistoryDictionaryBigramList.java 53 if (UserHistoryDictionary.DBG_SAVE_RESTORE) {
73 if (UserHistoryDictionary.DBG_SAVE_RESTORE) {
LatinIME.java 167 private UserHistoryDictionary mUserHistoryDictionary;
500 mUserHistoryDictionary = UserHistoryDictionary.getInstance(
    [all...]

Completed in 3106 milliseconds