Home
last modified time | relevance | path

Searched refs:wordCount (Results 1 – 5 of 5) sorted by relevance

/packages/inputmethods/LatinIME/native/jni/src/utils/
Dngram_utils.h49 static AK_FORCE_INLINE NgramType getNgramTypeFromWordCount(const int wordCount) { in getNgramTypeFromWordCount() argument
51 if (wordCount <= 0 || wordCount > MAX_PREV_WORD_COUNT_FOR_N_GRAM + 1) { in getNgramTypeFromWordCount()
55 return static_cast<NgramType>(wordCount - 1); in getNgramTypeFromWordCount()
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
DLatinImeStressTests.java37 final int wordCount = random.nextInt(maxWordCountToTypeInEachIteration); in testSwitchLanguagesAndInputLatinRandomCodePoints() local
38 for (int j = 0; j < wordCount; ++j) { in testSwitchLanguagesAndInputLatinRandomCodePoints()
55 final int wordCount = random.nextInt(maxWordCountToTypeInEachIteration); in testSwitchLanguagesAndInputRandomCodePoints() local
56 for (int j = 0; j < wordCount; ++j) { in testSwitchLanguagesAndInputRandomCodePoints()
DBinaryDictionaryTests.java256 final int wordCount = 1000; in testRandomlyAddUnigramWord() local
265 for (int i = 0; i < wordCount; ++i) { in testRandomlyAddUnigramWord()
333 final int wordCount = 100; in testRandomlyAddBigramWords() local
346 for (int i = 0; i < wordCount; ++i) { in testRandomlyAddBigramWords()
355 final String word0 = words.get(random.nextInt(wordCount)); in testRandomlyAddBigramWords()
356 final String word1 = words.get(random.nextInt(wordCount)); in testRandomlyAddBigramWords()
473 final int wordCount = 100; in testAddBigramWordsAndFlashWithGC() local
488 for (int i = 0; i < wordCount; ++i) { in testAddBigramWordsAndFlashWithGC()
497 final String word0 = words.get(random.nextInt(wordCount)); in testAddBigramWordsAndFlashWithGC()
498 final String word1 = words.get(random.nextInt(wordCount)); in testAddBigramWordsAndFlashWithGC()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DDictionaryStats.java53 final int wordCount) { in DictionaryStats() argument
56 mDictFileSize = wordCount; in DictionaryStats()
59 mWordCount = wordCount; in DictionaryStats()
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
DInfo.java42 int wordCount = 0; in showInfo() local
47 ++wordCount; in showInfo()
52 System.out.println("Words in the dictionary : " + wordCount); in showInfo()