Home
last modified time | relevance | path

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

/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
DContactsDictionaryUtilsTest.java55 assertTrue(ContactsDictionaryUtils.useFirstLastBigramsForLocale(Locale.ENGLISH)); in testUseFirstLastBigramsForLocale()
56 assertTrue(ContactsDictionaryUtils.useFirstLastBigramsForLocale(Locale.US)); in testUseFirstLastBigramsForLocale()
57 assertTrue(ContactsDictionaryUtils.useFirstLastBigramsForLocale(Locale.UK)); in testUseFirstLastBigramsForLocale()
58 assertFalse(ContactsDictionaryUtils.useFirstLastBigramsForLocale(Locale.CHINA)); in testUseFirstLastBigramsForLocale()
59 assertFalse(ContactsDictionaryUtils.useFirstLastBigramsForLocale(Locale.GERMAN)); in testUseFirstLastBigramsForLocale()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DContactsDictionaryUtils.java48 public static boolean useFirstLastBigramsForLocale(final Locale locale) { in useFirstLastBigramsForLocale() method in ContactsDictionaryUtils
DContactsBinaryDictionary.java57 mUseFirstLastBigrams = ContactsDictionaryUtils.useFirstLastBigramsForLocale(locale); in ContactsBinaryDictionary()