Home | History | Annotate | Download | only in userdictionary

Lines Matching defs: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 + "=''";
189 final String shortcut = getShortcut(position);
191 showAddOrEditDialog(word, shortcut);
202 // with the shortcut API.
225 * @param editingShortcut the shortcut for this entry, or null if none.
259 mCursor.getColumnIndexOrThrow(UserDictionary.Words.SHORTCUT));
262 public static void deleteWord(final String word, final String shortcut,
267 } else if (TextUtils.isEmpty(shortcut)) {
274 new String[] { word, shortcut });
291 final String shortcut = c.getString(INDEX_SHORTCUT);
292 if (TextUtils.isEmpty(shortcut)) {
295 ((TextView)v).setText(shortcut);