Home | History | Annotate | Download | only in provider

Lines Matching refs:frequency

30  * frequency information and locale information.
75 * The frequency column. A value between 1 and 255. Higher values imply higher frequency.
78 public static final String FREQUENCY = "frequency";
112 * Sort by descending order of frequency.
114 public static final String DEFAULT_SORT_ORDER = FREQUENCY + " DESC";
116 /** Adds a word to the dictionary, with the given frequency and the specified
130 int frequency, int localeType) {
144 addWord(context, word, frequency, null, locale);
147 /** Adds a word to the dictionary, with the given frequency and the specified
159 int frequency, String shortcut, Locale locale) {
166 if (frequency < FREQUENCY_MIN) frequency = FREQUENCY_MIN;
167 if (frequency > FREQUENCY_MAX) frequency = FREQUENCY_MAX;
173 values.put(FREQUENCY, frequency);