Home | History | Annotate | Download | only in latin

Lines Matching refs:Words

54  * It can be used directly to validate words or expand shortcuts, and it can be used by instances
260 UserDictionary.Words.CONTENT_URI,
308 * Returns the set of words defined for the given locale and more general locales.
312 * Note that this method returns expanded words, not shortcuts. Shortcuts are handled
316 * @return set of words that apply to the given locale.
324 final Set<String> words = new HashSet<>();
333 words.add(localeStringMap.get(wordLocale));
338 return words;
346 * Note that this method returns shortcut keys, not expanded words. Words are handled
410 // words are lowercased using their locale, and theoretically the
537 Cursor cursor = mResolver.query(UserDictionary.Words.CONTENT_URI,
538 null, null, null, UserDictionary.Words.DEFAULT_SORT_ORDER);
547 final int dictLocaleIndex = cursor.getColumnIndex(UserDictionary.Words.LOCALE);
555 final int dictWordIndex = cursor.getColumnIndex(UserDictionary.Words.WORD);
603 final int shortcutIndex = cursor.getColumnIndex(UserDictionary.Words.SHORTCUT);
647 + " words and " + numShortcuts + " shortcuts");