OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tempFreq
(Results
1 - 2
of
2
) sorted by null
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DictionaryCollection.java
96
final int
tempFreq
= mDictionaries.get(i).getFrequency(word);
97
maxFreq = Math.max(
tempFreq
, maxFreq);
106
final int
tempFreq
= mDictionaries.get(i).getMaxFrequencyOfExactMatches(word);
107
maxFreq = Math.max(
tempFreq
, maxFreq);
DictionaryFacilitatorImpl.java
688
final int
tempFreq
= dictionary.getFrequency(word);
689
if (
tempFreq
>= maxFreq) {
690
maxFreq =
tempFreq
;
Completed in 174 milliseconds