Home | History | Annotate | Download | only in provider

Lines Matching full:frequency

30  * frequency information and locale information.
78 * The frequency column. A value between 1 and 255. Higher values imply higher frequency.
81 public static final String FREQUENCY = "frequency";
115 * Sort by descending order of frequency.
117 public static final String DEFAULT_SORT_ORDER = FREQUENCY + " DESC";
119 /** Adds a word to the dictionary, with the given frequency and the specified
133 int frequency, int localeType) {
147 addWord(context, word, frequency, null, locale);
150 /** Adds a word to the dictionary, with the given frequency and the specified
162 int frequency, String shortcut, Locale locale) {
169 if (frequency < FREQUENCY_MIN) frequency = FREQUENCY_MIN;
170 if (frequency > FREQUENCY_MAX) frequency = FREQUENCY_MAX;
176 values.put(FREQUENCY, frequency);