Searched refs:wordList (Results 1 - 7 of 7) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
H A DMetadataHandler.java162 for (WordListMetadata wordList : metadata) {
163 if (id.equals(wordList.mId)
164 && wordList.mFormatVersion <= UpdateHandler.MAXIMUM_SUPPORTED_FORMAT_VERSION
165 && wordList.mFormatVersion > bestFormatVersion) {
166 bestWordList = wordList;
167 bestFormatVersion = wordList.mFormatVersion;
H A DDictionaryProvider.java302 final ContentValues wordList = getWordlistMetadataForWordlistId(clientId, wordlistId);
304 if (null == wordList) return null;
307 final int status = wordList.getAsInteger(MetadataDbHelper.STATUS_COLUMN);
318 wordList.getAsString(MetadataDbHelper.LOCAL_FILENAME_COLUMN);
454 final ContentValues wordList = getWordlistMetadataForWordlistId(clientId, wordlistId);
455 if (null == wordList) {
458 final int status = wordList.getAsInteger(MetadataDbHelper.STATUS_COLUMN);
459 final int version = wordList.getAsInteger(MetadataDbHelper.VERSION_COLUMN);
474 wordList.getAsString(MetadataDbHelper.LOCAL_FILENAME_COLUMN);
H A DActionBatch.java100 public StartDownloadAction(final String clientId, final WordListMetadata wordList) { argument
101 DebugLogUtils.l("New download action for client ", clientId, " : ", wordList);
103 mWordList = wordList;
211 public EnableAction(final String clientId, final WordListMetadata wordList) { argument
212 DebugLogUtils.l("New EnableAction for client ", clientId, " : ", wordList);
214 mWordList = wordList;
/packages/apps/TV/src/com/android/tv/recommendation/
H A DRoutineWatchEvaluator.java205 List<String> wordList = new ArrayList<>();
213 wordList.add(word);
216 return wordList;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DBinaryDictionaryGetter.java178 for (File wordList : wordLists) {
180 DictionaryInfoUtils.getCategoryFromFileName(wordList.getName());
183 cacheFiles.put(category, new FileAndMatchLevel(wordList, matchLevel));
/packages/apps/TV/tests/unit/src/com/android/tv/recommendation/
H A DRoutineWatchEvaluatorTest.java193 List<String> wordList = RoutineWatchEvaluator.splitTextToWords(text);
194 MoreAsserts.assertContentsInOrder(wordList, words);
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
H A DOpenWnnClauseConverterJAJP.java523 * @param wordList List to store words
526 private void addAutoGeneratedCandidates(String input, ArrayList wordList, boolean all) { argument
527 wordList.add(new WnnWord(input, input, mPosDefault, (CLAUSE_COST - 1) * input.length()));

Completed in 219 milliseconds