Home
last modified time | relevance | path

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

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DDictionaryProvider.java362 final String wordListId = results.getString(idIndex); in getDictionaryWordListsForLocale() local
363 if (TextUtils.isEmpty(wordListId)) continue; in getDictionaryWordListsForLocale()
365 TextUtils.split(wordListId, ID_CATEGORY_SEPARATOR); in getDictionaryWordListsForLocale()
408 UpdateHandler.installIfNeverRequested(context, clientId, wordListId); in getDictionaryWordListsForLocale()
414 dicts.put(wordListCategory, new WordListInfo(wordListId, wordListLocale, in getDictionaryWordListsForLocale()
DMetadataHandler.java118 final String clientId, final String wordListId, final int version) { in getCurrentMetadataForWordList() argument
120 MetadataDbHelper.getDb(context, clientId), wordListId, version); in getCurrentMetadataForWordList()
126 clientId, wordListId, version)); in getCurrentMetadataForWordList()
DDictionarySettingsFragment.java187 public void wordListDownloadFinished(final String wordListId, final boolean succeeded) { in wordListDownloadFinished() argument
188 final WordListPreference pref = findWordListPreference(wordListId); in wordListDownloadFinished()
DUpdateHandler.java110 void wordListDownloadFinished(String wordListId, boolean succeeded); in wordListDownloadFinished() argument
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DBinaryDictionaryGetter.java265 final String wordListId = DictionaryInfoUtils.getWordListIdFromFileName(f.getName()); in getDictionaryFiles() local
267 if (canUse && DictionaryInfoUtils.isMainWordListId(wordListId)) { in getDictionaryFiles()
270 if (!dictPackSettings.isWordListActive(wordListId)) continue; in getDictionaryFiles()
DBinaryDictionaryFileDumper.java177 final String wordListId = cursor.getString(0); in getWordListWordListInfos() local
180 if (TextUtils.isEmpty(wordListId)) continue; in getWordListWordListInfos()
181 list.add(new WordListInfo(wordListId, wordListLocale, wordListRawChecksum)); in getWordListWordListInfos()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
DDictionaryInfoUtils.java505 final String wordListId = getWordListIdFromFileName(dict.getName());
506 if (!DictionaryInfoUtils.isMainWordListId(wordListId)) {