OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:wordlistId
(Results
1 - 9
of
9
) sorted by null
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DictionaryListInterfaceState.java
43
public boolean isOpen(final String
wordlistId
) {
44
final State state = mWordlistToState.get(
wordlistId
);
49
public int getStatus(final String
wordlistId
) {
50
final State state = mWordlistToState.get(
wordlistId
);
55
public void setOpen(final String
wordlistId
, final int status) {
57
final State state = mWordlistToState.get(
wordlistId
);
61
mWordlistToState.put(
wordlistId
, newState);
DictionaryDownloadProgressBar.java
48
public void setIds(final String clientId, final String
wordlistId
) {
50
mWordlistId =
wordlistId
;
54
final String clientId, final String
wordlistId
) {
57
MetadataDbHelper.getContentValuesOfLatestAvailableWordlistById(db,
wordlistId
);
61
Log.e(TAG, "Unexpected word list ID: " +
wordlistId
);
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
...]
UpdateHandler.java
105
public void wordListDownloadFinished(String
wordListId
, boolean succeeded);
[
all
...]
WordListPreference.java
76
final String
wordlistId
, final int version, final Locale locale,
83
mWordlistId =
wordlistId
;
92
setKey(
wordlistId
);
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,
MetadataDbHelper.java
453
final int status, final String
wordlistId
, final String locale,
460
result.put(WORDLISTID_COLUMN,
wordlistId
);
[
all
...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
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
...]
DictionaryFactory.java
102
final String
wordlistId
=
104
if (null !=
wordlistId
) {
121
wordlistId
);
Completed in 363 milliseconds