OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:wordListId
(Results
1 - 7
of
7
) sorted by null
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
MetadataHandler.java
113
* @param
wordListId
the word list ID.
118
final String clientId, final String
wordListId
, final int version) {
120
MetadataDbHelper.getDb(context, clientId),
wordListId
, version);
125
+ "(clientId=%s,
wordListId
=%s, version=%d) on the database",
126
clientId,
wordListId
, version));
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
...]
DictionarySettingsFragment.java
187
public void wordListDownloadFinished(final String
wordListId
, final boolean succeeded) {
188
final WordListPreference pref = findWordListPreference(
wordListId
);
316
final String
wordlistId
= cursor.getString(idIndex);
327
final String key = matchLevelString + "." + description + "." +
wordlistId
;
349
mClientId,
wordlistId
, version, locale, description, status,
UpdateHandler.java
110
void wordListDownloadFinished(String
wordListId
, boolean succeeded);
[
all
...]
/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/latin/utils/
DictionaryInfoUtils.java
505
final String
wordListId
= getWordListIdFromFileName(dict.getName());
506
if (!DictionaryInfoUtils.isMainWordListId(
wordListId
)) {
Completed in 2974 milliseconds