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

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DictionaryFactory.java 53 final LinkedList<Dictionary> dictList = CollectionUtils.newLinkedList();
61 dictList.add(binaryDictionary);
67 // explicitly disabled the main dictionary), so the following is okay. dictList is never
69 return new DictionaryCollection(Dictionary.TYPE_MAIN, dictList);
DictionaryInfoUtils.java 302 private static void addOrUpdateDictInfo(final ArrayList<DictionaryInfo> dictList,
304 for (final DictionaryInfo info : dictList) {
309 dictList.remove(info);
312 dictList.add(newElement);
317 final ArrayList<DictionaryInfo> dictList = CollectionUtils.newArrayList();
336 addOrUpdateDictInfo(dictList, dictionaryInfo);
357 addOrUpdateDictInfo(dictList, dictionaryInfo);
360 return dictList;

Completed in 315 milliseconds