OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:finalFreq
(Results
1 - 3
of
3
) sorted by null
/packages/inputmethods/LatinIME/native/src/
correction.cpp
610
int
finalFreq
= freq;
620
multiplyIntCapped(matchWeight, &
finalFreq
);
624
multiplyRate(INPUT_EXCEEDS_OUTPUT_DEMOTION_RATE, &
finalFreq
);
632
multiplyRate(WORDS_WITH_JUST_ONE_CORRECTION_PROMOTION_RATE, &
finalFreq
);
634
multiplyIntCapped(typedLetterMultiplier, &
finalFreq
);
637
multiplyIntCapped(typedLetterMultiplier, &
finalFreq
);
645
multiplyIntCapped(matchWeight, &
finalFreq
);
650
multiplyRate(FIRST_CHAR_DIFFERENT_DEMOTION_RATE, &
finalFreq
);
665
multiplyRate(demotionRate, &
finalFreq
);
670
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 35 milliseconds