Searched refs:wordList (Results 1 – 5 of 5) sorted by relevance
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/ |
D | MetadataHandler.java | 162 for (WordListMetadata wordList : metadata) { in findWordListById() 163 if (id.equals(wordList.mId) in findWordListById() 164 && wordList.mFormatVersion <= UpdateHandler.MAXIMUM_SUPPORTED_FORMAT_VERSION in findWordListById() 165 && wordList.mFormatVersion > bestFormatVersion) { in findWordListById() 166 bestWordList = wordList; in findWordListById() 167 bestFormatVersion = wordList.mFormatVersion; in findWordListById()
|
D | DictionaryProvider.java | 302 final ContentValues wordList = getWordlistMetadataForWordlistId(clientId, wordlistId); in openAssetFile() local 304 if (null == wordList) return null; in openAssetFile() 307 final int status = wordList.getAsInteger(MetadataDbHelper.STATUS_COLUMN); in openAssetFile() 318 wordList.getAsString(MetadataDbHelper.LOCAL_FILENAME_COLUMN); in openAssetFile() 454 final ContentValues wordList = getWordlistMetadataForWordlistId(clientId, wordlistId); in deleteDataFile() local 455 if (null == wordList) { in deleteDataFile() 458 final int status = wordList.getAsInteger(MetadataDbHelper.STATUS_COLUMN); in deleteDataFile() 459 final int version = wordList.getAsInteger(MetadataDbHelper.VERSION_COLUMN); in deleteDataFile() 474 wordList.getAsString(MetadataDbHelper.LOCAL_FILENAME_COLUMN); in deleteDataFile()
|
D | ActionBatch.java | 100 public StartDownloadAction(final String clientId, final WordListMetadata wordList) { in StartDownloadAction() argument 101 DebugLogUtils.l("New download action for client ", clientId, " : ", wordList); in StartDownloadAction() 103 mWordList = wordList; in StartDownloadAction() 211 public EnableAction(final String clientId, final WordListMetadata wordList) { in EnableAction() argument 212 DebugLogUtils.l("New EnableAction for client ", clientId, " : ", wordList); in EnableAction() 214 mWordList = wordList; in EnableAction()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
D | BinaryDictionaryGetter.java | 178 for (File wordList : wordLists) { in getCachedWordLists() 180 DictionaryInfoUtils.getCategoryFromFileName(wordList.getName()); in getCachedWordLists() 183 cacheFiles.put(category, new FileAndMatchLevel(wordList, matchLevel)); in getCachedWordLists()
|
/packages/apps/TV/src/com/android/tv/recommendation/ |
D | RoutineWatchEvaluator.java | 215 List<String> wordList = new ArrayList<>(); in splitTextToWords() local 224 wordList.add(word); in splitTextToWords() 227 return wordList; in splitTextToWords()
|