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
282
final String
wordListId
= DictionaryInfoUtils.getWordListIdFromFileName(f.getName());
284
if (canUse && DictionaryInfoUtils.isMainWordListId(
wordListId
)) {
287
if (!dictPackSettings.isWordListActive(
wordListId
)) continue;
BinaryDictionaryFileDumper.java
169
final String
wordListId
= c.getString(0);
171
if (TextUtils.isEmpty(
wordListId
)) continue;
172
list.add(new WordListInfo(
wordListId
, wordListLocale));
218
private static void cacheWordList(final String
wordlistId
, final String locale,
233
providerClient, QUERY_PATH_DATAFILE,
wordlistId
/* extraPath */);
239
DictionaryInfoUtils.getCacheFileName(
wordlistId
, locale, context);
242
tempFileName = BinaryDictionaryGetter.getTempFileName(
wordlistId
, context);
311
BinaryDictionaryGetter.removeFilesWithIdExcept(context,
wordlistId
, finalFile);
312
Log.e(TAG, "Successfully copied file for wordlist ID " +
wordlistId
);
/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
167
public void wordListDownloadFinished(final String
wordListId
, final boolean succeeded) {
168
final WordListPreference pref = findWordListPreference(
wordListId
);
302
final String
wordlistId
= cursor.getString(idIndex);
313
final String key = matchLevelString + "." + description + "." +
wordlistId
;
330
mClientId,
wordlistId
, version, locale, description, status,
UpdateHandler.java
103
public void wordListDownloadFinished(String
wordListId
, boolean succeeded);
[
all
...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
DictionaryInfoUtils.java
322
final String
wordListId
= getWordListIdFromFileName(dict.getName());
323
if (!DictionaryInfoUtils.isMainWordListId(
wordListId
)) continue;
Completed in 120 milliseconds