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 + "=''";
122 // - The empty string. This means we want a cursor returning words valid for all locales.
132 return getActivity().managedQuery(UserDictionary.Words.CONTENT_URI, QUERY_PROJECTION,
134 "UPPER(" + UserDictionary.Words.WORD + ")");
137 return getActivity().managedQuery(UserDictionary.Words.CONTENT_URI, QUERY_PROJECTION,
139 "UPPER(" + UserDictionary.Words.WORD + ")");
146 new String[] { UserDictionary.Words.WORD, UserDictionary.Words.SHORTCUT },
203 mCursor.getColumnIndexOrThrow(UserDictionary.Words.WORD));
213 mCursor.getColumnIndexOrThrow(UserDictionary.Words.SHORTCUT));
220 UserDictionary.Words.CONTENT_URI, DELETE_SELECTION_WITHOUT_SHORTCUT,
224 UserDictionary.Words.CONTENT_URI, DELETE_SELECTION_WITH_SHORTCUT,
260 final int wordColIndex = c.getColumnIndexOrThrow(UserDictionary.Words.WORD);