Home | History | Annotate | Download | only in userdictionary

Lines Matching refs:Words

41 import android.provider.UserDictionary.Words;
70 Words._ID,
71 Words.WORD,
72 Words.FREQUENCY,
73 Words.LOCALE,
74 Words.APP_ID,
75 Words.SHORTCUT
101 restoreDictionary(data, Words.CONTENT_URI);
152 Cursor cursor = getContentResolver().query(Words.CONTENT_URI, PROJECTION,
153 null, null, Words.WORD);
240 // duplicate words as there is no order guarantee, but only to save round
254 cv.put(Words.WORD, word);
255 cv.put(Words.FREQUENCY, frequencyInt);
256 cv.put(Words.LOCALE, locale);
257 cv.put(Words.APP_ID, appidInt);
258 cv.put(Words.SHORTCUT, shortcut);
261 getContentResolver().delete(contentUri, Words.WORD + "=? and "
262 + Words.SHORTCUT + "=?", new String[] {word, shortcut});
264 getContentResolver().delete(contentUri, Words.WORD + "=? and "
265 + Words.SHORTCUT + " is null", new String[0]);