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

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
DictionaryPool.java 26 public class DictionaryPool extends LinkedBlockingQueue<DictAndProximity> {
33 public DictionaryPool(final int maxSize, final AndroidSpellCheckerService service,
AndroidSpellCheckerService.java 75 private Map<String, DictionaryPool> mDictionaryPools =
76 Collections.synchronizedMap(new TreeMap<String, DictionaryPool>());
261 final Map<String, DictionaryPool> oldPools = mDictionaryPools;
262 mDictionaryPools = Collections.synchronizedMap(new TreeMap<String, DictionaryPool>());
267 for (DictionaryPool pool : oldPools.values()) {
287 private DictionaryPool getDictionaryPool(final String locale) {
288 DictionaryPool pool = mDictionaryPools.get(locale);
291 pool = new DictionaryPool(POOL_SIZE, this, localeObject);
346 private DictionaryPool mDictionaryPool;

Completed in 41 milliseconds