Home | History | Annotate | Download | only in settings

Lines Matching refs:SHORTCUT

49         UserDictionary.Words._ID, UserDictionary.Words.WORD, UserDictionary.Words.SHORTCUT
52 // The index of the shortcut in the above array.
63 + "=? AND " + UserDictionary.Words.SHORTCUT + "=?";
65 + "=? AND " + UserDictionary.Words.SHORTCUT + " is null OR "
66 + UserDictionary.Words.SHORTCUT + "=''";
151 new String[] { UserDictionary.Words.WORD, UserDictionary.Words.SHORTCUT },
158 final String shortcut = getShortcut(position);
160 showAddOrEditDialog(word, shortcut);
185 * @param editingShortcut the shortcut for this entry, or null if none.
218 mCursor.getColumnIndexOrThrow(UserDictionary.Words.SHORTCUT));
221 public static void deleteWord(final String word, final String shortcut,
223 if (TextUtils.isEmpty(shortcut)) {
230 new String[] { word, shortcut });
243 final String shortcut = c.getString(INDEX_SHORTCUT);
244 if (TextUtils.isEmpty(shortcut)) {
247 ((TextView)v).setText(shortcut);