Home | History | Annotate | Download | only in userdictionary

Lines Matching refs:SHORTCUT

57             { UserDictionary.Words._ID, UserDictionary.Words.WORD, UserDictionary.Words.SHORTCUT};
62 // The index of the shortcut in the above array.
70 UserDictionary.Words.WORD, UserDictionary.Words.SHORTCUT
95 + "=? AND " + UserDictionary.Words.SHORTCUT + "=?";
97 + "=? AND " + UserDictionary.Words.SHORTCUT + " is null OR "
98 + UserDictionary.Words.SHORTCUT + "=''";
196 final String shortcut = getShortcut(position);
198 showAddOrEditDialog(word, shortcut);
209 // with the shortcut API.
232 * @param editingShortcut the shortcut for this entry, or null if none.
266 mCursor.getColumnIndexOrThrow(UserDictionary.Words.SHORTCUT));
269 public static void deleteWord(final String word, final String shortcut,
274 } else if (TextUtils.isEmpty(shortcut)) {
281 new String[] { word, shortcut });
298 final String shortcut = c.getString(INDEX_SHORTCUT);
299 if (TextUtils.isEmpty(shortcut)) {
302 ((TextView)v).setText(shortcut);