Home
last modified time | relevance | path

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

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DDictionaryProvider.java302 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()
DMetadataHandler.java162 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()
DActionBatch.java100 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/
DBinaryDictionaryGetter.java178 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/
DRoutineWatchEvaluator.java205 List<String> wordList = new ArrayList<>(); in splitTextToWords() local
213 wordList.add(word); in splitTextToWords()
216 return wordList; in splitTextToWords()
/packages/apps/TV/tests/unit/src/com/android/tv/recommendation/
DRoutineWatchEvaluatorTest.java193 List<String> wordList = RoutineWatchEvaluator.splitTextToWords(text); in assertSplitTextToWords() local
194 MoreAsserts.assertContentsInOrder(wordList, words); in assertSplitTextToWords()
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
DOpenWnnClauseConverterJAJP.java526 private void addAutoGeneratedCandidates(String input, ArrayList wordList, boolean all) { in addAutoGeneratedCandidates() argument
527 wordList.add(new WnnWord(input, input, mPosDefault, (CLAUSE_COST - 1) * input.length())); in addAutoGeneratedCandidates()