HomeSort by relevance Sort by last modified time
    Searched refs:BIGRAM (Results 1 - 4 of 4) sorted by null

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Dictionary.java 35 UNIGRAM, BIGRAM
74 * Searches for pairs in the bigram dictionary that matches the previous word and all the
Suggest.java 45 * Words that appear in both bigram and unigram data gets multiplier ranging from
47 * bigram data.
53 * Maximum possible bigram frequency. Will depend on how many bits are being used in data
54 * structure. Maximum bigram freqeuncy will get the BIGRAM_MULTIPLIER_MAX as the multiplier.
218 * @param prevWordForBigram previous word (used only for bigram)
404 if(dataType == Dictionary.DataType.BIGRAM) {
421 // Check if the word was already added before (by bigram data)
424 dataTypeForLog = Dictionary.DataType.BIGRAM;
425 // turn freq from bigram into multiplier specified above
430 /* Log.d(TAG,"bigram num: " + bigramSuggestio
    [all...]
BinaryDictionary.java 181 mDicTypeId, DataType.BIGRAM);
ExpandableDictionary.java 343 LinkedList<NextWord> bigram = firstWord.ngrams; local
344 if (bigram == null || bigram.size() == 0) {
346 bigram = firstWord.ngrams;
348 for (NextWord nw : bigram) {
459 DataType.BIGRAM);

Completed in 442 milliseconds