Home
last modified time | relevance | path

Searched refs:sLangUserHistoryDictCache (Results 1 – 1 of 1) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/personalization/
DPersonalizationHelper.java41 sLangUserHistoryDictCache = new ConcurrentHashMap<>(); field in PersonalizationHelper
50 synchronized (sLangUserHistoryDictCache) { in getUserHistoryDictionary()
51 if (sLangUserHistoryDictCache.containsKey(lookupStr)) { in getUserHistoryDictionary()
53 sLangUserHistoryDictCache.get(lookupStr); in getUserHistoryDictionary()
65 sLangUserHistoryDictCache.put(lookupStr, new SoftReference<>(dict)); in getUserHistoryDictionary()
71 synchronized (sLangUserHistoryDictCache) { in removeAllUserHistoryDictionaries()
73 : sLangUserHistoryDictCache.entrySet()) { in removeAllUserHistoryDictionaries()
81 sLangUserHistoryDictCache.clear(); in removeAllUserHistoryDictionaries()