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

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
DictionaryPool.java 39 public final class DictionaryPool extends LinkedBlockingQueue<DictAndKeyboard> {
40 private final static String TAG = DictionaryPool.class.getSimpleName();
71 public DictionaryPool(final int maxSize, final AndroidSpellCheckerService service,
AndroidSpellCheckerService.java 69 private Map<String, DictionaryPool> mDictionaryPools = CollectionUtils.newSynchronizedTreeMap();
379 final Map<String, DictionaryPool> oldPools = mDictionaryPools;
386 for (DictionaryPool pool : oldPools.values()) {
408 public DictionaryPool getDictionaryPool(final String locale) {
409 DictionaryPool pool = mDictionaryPools.get(locale);
412 pool = new DictionaryPool(POOL_SIZE, this, localeObject);
AndroidWordLevelSpellCheckerSession.java 47 private DictionaryPool mDictionaryPool;
278 if (!DictionaryPool.isAValidDictionary(dictInfo)) {
310 if (!DictionaryPool.isAValidDictionary(dictInfo)) {

Completed in 350 milliseconds