Home | History | Annotate | Download | only in latin

Lines Matching defs:frequency

38         Words.FREQUENCY,
43 Words.FREQUENCY,
155 * @param frequency the frequency of occurrence of the word. A frequency of 255 is considered
157 * @TODO use a higher or float range for frequency
160 public synchronized void addWord(final String word, final int frequency) {
166 super.addWord(word, frequency);
171 values.put(Words.FREQUENCY, frequency);
194 // Update the entry with new frequency value.
233 final int indexFrequency = cursor.getColumnIndex(Words.FREQUENCY);
236 int frequency = cursor.getInt(indexFrequency);
240 super.addWord(word, frequency);