OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:wordListId
(Results
1 - 6
of
6
) sorted by null
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
BinaryDictionaryGetter.java
278
final String
wordListId
= DictionaryInfoUtils.getWordListIdFromFileName(f.getName());
280
if (canUse && DictionaryInfoUtils.isMainWordListId(
wordListId
)) {
283
if (!dictPackSettings.isWordListActive(
wordListId
)) continue;
BinaryDictionaryFileDumper.java
169
final String
wordListId
= cursor.getString(0);
172
if (TextUtils.isEmpty(
wordListId
)) continue;
173
list.add(new WordListInfo(
wordListId
, wordListLocale, wordListRawChecksum));
221
private static void cacheWordList(final String
wordlistId
, final String locale,
237
providerClient, QUERY_PATH_DATAFILE,
wordlistId
/* extraPath */);
243
DictionaryInfoUtils.getCacheFileName(
wordlistId
, locale, context);
246
tempFileName = BinaryDictionaryGetter.getTempFileName(
wordlistId
, context);
322
BinaryDictionaryGetter.removeFilesWithIdExcept(context,
wordlistId
, finalFile);
323
Log.e(TAG, "Successfully copied file for wordlist ID " +
wordlistId
);
353
reportBrokenFileToDictionaryProvider(providerClient, clientId,
wordlistId
);
[
all
...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DictionaryProvider.java
272
* @param
wordlistId
the ID of the wordlist for which to get the metadata.
276
final String
wordlistId
) {
278
if (TextUtils.isEmpty(
wordlistId
)) return null;
281
db,
wordlistId
);
306
final String
wordlistId
= uri.getLastPathSegment();
308
final ContentValues wordList = getWordlistMetadataForWordlistId(clientId,
wordlistId
);
370
final String
wordListId
= results.getString(idIndex);
371
if (TextUtils.isEmpty(
wordListId
)) continue;
373
TextUtils.split(
wordListId
, ID_CATEGORY_SEPARATOR);
416
UpdateHandler.installIfNeverRequested(context, clientId,
wordListId
,
[
all
...]
DictionarySettingsFragment.java
167
public void wordListDownloadFinished(final String
wordListId
, final boolean succeeded) {
168
final WordListPreference pref = findWordListPreference(
wordListId
);
303
final String
wordlistId
= cursor.getString(idIndex);
316
final String key = matchLevelString + "." + description + "." +
wordlistId
;
338
mClientId,
wordlistId
, version, locale, description, status,
UpdateHandler.java
105
public void wordListDownloadFinished(String
wordListId
, boolean succeeded);
[
all
...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
DictionaryInfoUtils.java
348
final String
wordListId
= getWordListIdFromFileName(dict.getName());
349
if (!DictionaryInfoUtils.isMainWordListId(
wordListId
)) continue;
Completed in 140 milliseconds