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

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
BinaryDictionaryGetter.java 312 final String wordListId = DictionaryInfoUtils.getWordListIdFromFileName(f.getName());
314 if (canUse && DictionaryInfoUtils.isMainWordListId(wordListId)) {
317 if (!dictPackSettings.isWordListActive(wordListId)) continue;
BinaryDictionaryFileDumper.java 164 final String wordListId = c.getString(0);
166 if (TextUtils.isEmpty(wordListId)) continue;
167 list.add(new WordListInfo(wordListId, wordListLocale));
213 private static void cacheWordList(final String wordlistId, final String locale,
228 providerClient, QUERY_PATH_DATAFILE, wordlistId /* extraPath */);
234 DictionaryInfoUtils.getCacheFileName(wordlistId, locale, context);
237 tempFileName = BinaryDictionaryGetter.getTempFileName(wordlistId, context);
306 BinaryDictionaryGetter.removeFilesWithIdExcept(context, wordlistId, finalFile);
DictionaryInfoUtils.java 326 final String wordListId = getWordListIdFromFileName(dict.getName());
327 if (!DictionaryInfoUtils.isMainWordListId(wordListId)) continue;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DictionaryProvider.java 267 * @param wordlistId the ID of the wordlist for which to get the metadata.
271 final String wordlistId) {
273 if (TextUtils.isEmpty(wordlistId)) return null;
276 db, wordlistId);
301 final String wordlistId = uri.getLastPathSegment();
303 final ContentValues wordList = getWordlistMetadataForWordlistId(clientId, wordlistId);
362 final String wordListId = results.getString(idIndex);
363 if (TextUtils.isEmpty(wordListId)) continue;
365 TextUtils.split(wordListId, ID_CATEGORY_SEPARATOR);
407 UpdateHandler.installIfNeverRequested(context, clientId, wordListId,
    [all...]
DictionarySettingsFragment.java 159 public void wordListDownloadFinished(final String wordListId, final boolean succeeded) {
160 final WordListPreference pref = findWordListPreference(wordListId);
292 final String wordlistId = cursor.getString(idIndex);
303 final String key = matchLevelString + "." + description + "." + wordlistId;
320 mClientId, wordlistId, version, locale, description, status,
UpdateHandler.java 101 public void wordListDownloadFinished(String wordListId, boolean succeeded);
    [all...]

Completed in 83 milliseconds