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

  /packages/inputmethods/LatinIME/native/src/
correction.cpp 659 int finalFreq = freq;
667 multiplyIntCapped(matchWeight, &finalFreq);
671 multiplyRate(INPUT_EXCEEDS_OUTPUT_DEMOTION_RATE, &finalFreq);
679 multiplyRate(WORDS_WITH_JUST_ONE_CORRECTION_PROMOTION_RATE, &finalFreq);
681 multiplyIntCapped(typedLetterMultiplier, &finalFreq);
684 multiplyIntCapped(typedLetterMultiplier, &finalFreq);
692 multiplyIntCapped(matchWeight, &finalFreq);
697 multiplyRate(FIRST_CHAR_DIFFERENT_DEMOTION_RATE, &finalFreq);
712 multiplyRate(demotionRate, &finalFreq);
717 WORDS_WITH_TRANSPOSED_CHARACTERS_DEMOTION_RATE, &finalFreq);
    [all...]
unigram_dictionary.cpp 381 const int finalFreq = correction->getFinalFreq(freq, &wordPointer, &wordLength);
382 if (finalFreq >= 0) {
383 addWord(wordPointer, wordLength, finalFreq);
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ExpandableDictionary.java 296 final int finalFreq;
298 finalFreq = freq * snr;
300 finalFreq = computeSkippedWordFinalFreq(freq, snr, mInputLength);
302 if (!callback.addWord(word, 0, depth + 1, finalFreq, mDicTypeId,
335 final int finalFreq;
337 finalFreq = freq * snr * addedAttenuation
340 finalFreq = computeSkippedWordFinalFreq(freq,
343 callback.addWord(word, 0, depth + 1, finalFreq, mDicTypeId,
    [all...]

Completed in 94 milliseconds