Home
last modified time | relevance | path

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

/aosp12/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DDictionaryFacilitatorImpl.java76 public static final Map<String, Class<? extends ExpandableBinaryDictionary>>
156 final Map<String, ExpandableBinaryDictionary> subDicts) { in DictionaryGroup()
188 public ExpandableBinaryDictionary getSubDict(final String dictType) { in getSubDict()
251 private static ExpandableBinaryDictionary getSubDict(final String dictType, in getSubDict()
254 final Class<? extends ExpandableBinaryDictionary> dictClass = in getSubDict()
264 return (ExpandableBinaryDictionary) dict; in getSubDict()
334 final Map<String, ExpandableBinaryDictionary> subDicts = new HashMap<>(); in resetDictionaries()
336 final ExpandableBinaryDictionary subDict; in resetDictionaries()
426 final Map<String, ExpandableBinaryDictionary> subDicts = new HashMap<>(); in resetDictionariesForTesting()
434 final ExpandableBinaryDictionary dict = getSubDict( in resetDictionariesForTesting()
[all …]
H A DUserBinaryDictionary.java42 public class UserBinaryDictionary extends ExpandableBinaryDictionary {
43 private static final String TAG = ExpandableBinaryDictionary.class.getSimpleName();
H A DExpandableBinaryDictionary.java59 abstract public class ExpandableBinaryDictionary extends Dictionary { class
63 private static final String TAG = ExpandableBinaryDictionary.class.getSimpleName();
142 public ExpandableBinaryDictionary(final Context context, final String dictName, in ExpandableBinaryDictionary() method in ExpandableBinaryDictionary
H A DDictionaryFacilitator.java136 ExpandableBinaryDictionary getSubDictForTesting(final String dictName); in getSubDictForTesting()
H A DContactsBinaryDictionary.java39 public class ContactsBinaryDictionary extends ExpandableBinaryDictionary
/aosp12/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/personalization/
H A DUserHistoryDictionaryTests.java28 import com.android.inputmethod.latin.ExpandableBinaryDictionary;
126 final File dictFile = ExpandableBinaryDictionary.getDictFile( in doTestRandomWords()
177 dictFiles[i] = ExpandableBinaryDictionary.getDictFile( in doTestStressTestForSwitchingLanguagesAndAddingWords()
221 final File dictFile = ExpandableBinaryDictionary.getDictFile( in doTestAddManyWords()
/aosp12/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/personalization/
H A DUserHistoryDictionary.java25 import com.android.inputmethod.latin.ExpandableBinaryDictionary;
43 public class UserHistoryDictionary extends ExpandableBinaryDictionary {
99 public static void addToDictionary(final ExpandableBinaryDictionary userHistoryDictionary, in addToDictionary()