Home | History | Annotate | Download | only in settings

Lines Matching refs:Words

49         UserDictionary.Words._ID, UserDictionary.Words.WORD, UserDictionary.Words.SHORTCUT
58 UserDictionary.Words.LOCALE + "=?";
60 UserDictionary.Words.LOCALE + " is null";
62 private static final String DELETE_SELECTION_WITH_SHORTCUT = UserDictionary.Words.WORD
63 + "=? AND " + UserDictionary.Words.SHORTCUT + "=?";
64 private static final String DELETE_SELECTION_WITHOUT_SHORTCUT = UserDictionary.Words.WORD
65 + "=? AND " + UserDictionary.Words.SHORTCUT + " is null OR "
66 + UserDictionary.Words.SHORTCUT + "=''";
127 // - The empty string. This means we want a cursor returning words valid for all locales.
137 return getActivity().managedQuery(UserDictionary.Words.CONTENT_URI, QUERY_PROJECTION,
139 "UPPER(" + UserDictionary.Words.WORD + ")");
142 return getActivity().managedQuery(UserDictionary.Words.CONTENT_URI, QUERY_PROJECTION,
144 "UPPER(" + UserDictionary.Words.WORD + ")");
151 new String[] { UserDictionary.Words.WORD, UserDictionary.Words.SHORTCUT },
209 mCursor.getColumnIndexOrThrow(UserDictionary.Words.WORD));
219 mCursor.getColumnIndexOrThrow(UserDictionary.Words.SHORTCUT));
226 UserDictionary.Words.CONTENT_URI, DELETE_SELECTION_WITHOUT_SHORTCUT,
230 UserDictionary.Words.CONTENT_URI, DELETE_SELECTION_WITH_SHORTCUT,
266 final int wordColIndex = c.getColumnIndexOrThrow(UserDictionary.Words.WORD);