Home
last modified time | relevance | path

Searched refs:SHORTCUT (Results 1 – 6 of 6) sorted by relevance

/packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
DUserDictionaryProvider.java95 + Words.SHORTCUT + " TEXT" in onCreate()
103 + " to version 2: adding " + Words.SHORTCUT + " column"); in onUpgrade()
105 + " ADD " + Words.SHORTCUT + " TEXT;"); in onUpgrade()
202 if (values.containsKey(Words.SHORTCUT) == false) { in insert()
203 values.put(Words.SHORTCUT, (String) null); in insert()
279 sDictProjectionMap.put(Words.SHORTCUT, Words.SHORTCUT); in sDictProjectionMap.put() argument
DDictionaryBackupAgent.java72 Words.SHORTCUT
239 cv.put(Words.SHORTCUT, shortcut); in restoreDictionary()
242 + Words.SHORTCUT + "=?", new String[] {word, shortcut}); in restoreDictionary()
/packages/apps/Settings/src/com/android/settings/
DUserDictionarySettings.java57 UserDictionary.Words._ID, UserDictionary.Words.WORD, UserDictionary.Words.SHORTCUT
71 + "=? AND " + UserDictionary.Words.SHORTCUT + "=?";
73 + "=? AND " + UserDictionary.Words.SHORTCUT + " is null OR "
74 + UserDictionary.Words.SHORTCUT + "=''";
156 new String[] { UserDictionary.Words.WORD, UserDictionary.Words.SHORTCUT }, in createAdapter()
224 mCursor.getColumnIndexOrThrow(UserDictionary.Words.SHORTCUT)); in getShortcut()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DUserBinaryDictionary.java38 final static String SHORTCUT = "shortcut"; field in UserBinaryDictionary
41 SHORTCUT,
189 final int indexShortcut = cursor.getColumnIndex(SHORTCUT); in addWords()
DUserDictionary.java42 final static String SHORTCUT = "shortcut"; field in UserDictionary
45 SHORTCUT,
207 final int indexShortcut = cursor.getColumnIndex(SHORTCUT); in addWords()
/packages/apps/Settings/src/com/android/settings/quicklaunch/
DQuickLaunchSettings.java67 Bookmarks.SHORTCUT, Bookmarks.TITLE, Bookmarks.INTENT
69 private static final String sShortcutSelection = Bookmarks.SHORTCUT + "=?";