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

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
BinaryDictionaryGetter.java 265 final String wordListId = DictionaryInfoUtils.getWordListIdFromFileName(f.getName());
267 if (canUse && DictionaryInfoUtils.isMainWordListId(wordListId)) {
270 if (!dictPackSettings.isWordListActive(wordListId)) continue;
BinaryDictionaryFileDumper.java 177 final String wordListId = cursor.getString(0);
180 if (TextUtils.isEmpty(wordListId)) continue;
181 list.add(new WordListInfo(wordListId, wordListLocale, wordListRawChecksum));
229 private static void installWordListToStaging(final String wordlistId, final String locale,
245 providerClient, QUERY_PATH_DATAFILE, wordlistId /* extraPath */);
251 DictionaryInfoUtils.getStagingFileName(wordlistId, locale, context);
254 tempFileName = BinaryDictionaryGetter.getTempFileName(wordlistId, context);
337 Log.d(TAG, "Successfully copied file for wordlist ID " + wordlistId);
367 reportBrokenFileToDictionaryProvider(providerClient, clientId, wordlistId);
372 final String wordlistId) {
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DictionaryProvider.java 266 * @param wordlistId the ID of the wordlist for which to get the metadata.
270 final String wordlistId) {
272 if (TextUtils.isEmpty(wordlistId)) return null;
275 db, wordlistId);
300 final String wordlistId = uri.getLastPathSegment();
302 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);
408 UpdateHandler.installIfNeverRequested(context, clientId, wordListId);
    [all...]

Completed in 214 milliseconds