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

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
BinaryDictionaryGetter.java 141 public FileAndMatchLevel(final File file, final int matchLevel) {
143 mMatchLevel = matchLevel;
169 final int matchLevel = LocaleUtils.getMatchLevel(dirLocale, locale);
170 if (LocaleUtils.isMatch(matchLevel)) {
177 if (null == currentBestMatch || currentBestMatch.mMatchLevel < matchLevel) {
178 cacheFiles.put(category, new FileAndMatchLevel(wordList, matchLevel));
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DictionaryProvider.java 93 public WordListInfo(final String id, final String locale, final int matchLevel) {
96 mMatchLevel = matchLevel;
390 final int matchLevel = LocaleUtils.getMatchLevel(wordListLocale, locale);
391 if (!LocaleUtils.isMatch(matchLevel)) {
413 || currentBestMatch.mMatchLevel < matchLevel) {
415 new WordListInfo(wordListId, wordListLocale, matchLevel));
DictionarySettingsFragment.java 298 final int matchLevel = LocaleUtils.getMatchLevel(systemLocaleString, localeString);
299 final String matchLevelString = LocaleUtils.getMatchLevelSortedString(matchLevel);

Completed in 209 milliseconds