Home | History | Annotate | Download | only in settings

Lines Matching defs:Words

51         UserDictionary.Words._ID, UserDictionary.Words.WORD
56 private static final String QUERY_SELECTION = UserDictionary.Words.LOCALE + "=? OR "
57 + UserDictionary.Words.LOCALE + " is null";
59 private static final String DELETE_SELECTION = UserDictionary.Words.WORD + "=?";
126 return managedQuery(UserDictionary.Words.CONTENT_URI, QUERY_PROJECTION,
128 "UPPER(" + UserDictionary.Words.WORD + ")");
134 new String[] { UserDictionary.Words.WORD },
201 mCursor.getColumnIndexOrThrow(UserDictionary.Words.WORD));
252 UserDictionary.Words.addWord(this, word.toString(),
253 250, UserDictionary.Words.LOCALE_TYPE_ALL);
259 getContentResolver().delete(UserDictionary.Words.CONTENT_URI, DELETE_SELECTION,
269 int wordColIndex = c.getColumnIndexOrThrow(UserDictionary.Words.WORD);