Home
last modified time | relevance | path

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

/packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
DUserDictionaryProvider.java93 sDictProjectionMap.put(Words.SHORTCUT, Words.SHORTCUT); in sDictProjectionMap.put() argument
117 + Words.SHORTCUT + " TEXT" in onCreate()
125 + " to version 2: adding " + Words.SHORTCUT + " column"); in onUpgrade()
127 + " ADD " + Words.SHORTCUT + " TEXT;"); in onUpgrade()
236 if (!values.containsKey(Words.SHORTCUT)) { in insert()
237 values.put(Words.SHORTCUT, (String) null); in insert()
DDictionaryBackupAgent.java75 Words.SHORTCUT
258 cv.put(Words.SHORTCUT, shortcut); in restoreDictionary()
262 + Words.SHORTCUT + "=?", new String[] {word, shortcut}); in restoreDictionary()
265 + Words.SHORTCUT + " is null", new String[0]); in restoreDictionary()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/userdictionary/
DUserDictionarySettings.java57 { UserDictionary.Words._ID, UserDictionary.Words.WORD, UserDictionary.Words.SHORTCUT};
70 UserDictionary.Words.WORD, UserDictionary.Words.SHORTCUT
95 + "=? AND " + UserDictionary.Words.SHORTCUT + "=?";
97 + "=? AND " + UserDictionary.Words.SHORTCUT + " is null OR "
98 + UserDictionary.Words.SHORTCUT + "=''";
278 mCursor.getColumnIndexOrThrow(UserDictionary.Words.SHORTCUT)); in getShortcut()
/packages/apps/Settings/src/com/android/settings/
DUserDictionarySettings.java51 UserDictionary.Words._ID, UserDictionary.Words.WORD, UserDictionary.Words.SHORTCUT
65 + "=? AND " + UserDictionary.Words.SHORTCUT + "=?";
67 + "=? AND " + UserDictionary.Words.SHORTCUT + " is null OR "
68 + UserDictionary.Words.SHORTCUT + "=''";
167 new String[] { UserDictionary.Words.WORD, UserDictionary.Words.SHORTCUT }, in createAdapter()
240 mCursor.getColumnIndexOrThrow(UserDictionary.Words.SHORTCUT)); in getShortcut()
/packages/apps/Launcher3/tests/src/com/android/launcher3/model/
DGridSizeMigrationTaskTest.java33 private static final int SHORTCUT = LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT; field in GridSizeMigrationTaskTest
58 addItem(SHORTCUT, 1, HOTSEAT, 0, 0), in testHotseatMigration_apps_dropped()
60 addItem(SHORTCUT, 3, HOTSEAT, 0, 0), in testHotseatMigration_apps_dropped()
81 addItem(SHORTCUT, 3, HOTSEAT, 0, 0), in testHotseatMigration_shortcuts_dropped()
379 if (type == APPLICATION || type == SHORTCUT) { in addItem()
/packages/apps/Launcher3/protos/
Dlauncher_log.proto51 optional int32 intent_hash = 12; // Used for ItemType.SHORTCUT
61 SHORTCUT = 2; enumerator
Dlauncher_dump.proto55 SHORTCUT = 3; // ShortcutManager enumerator
/packages/apps/Launcher3/src/com/android/launcher3/popup/
DPopupPopulator.java60 SHORTCUT(R.layout.deep_shortcut, true), enumConstant
87 items[i] = Item.SHORTCUT; in getItemsToPopulate()
DPopupContainerWithArrow.java256 } else if (itemTypeToPopulate == PopupPopulator.Item.SHORTCUT) { in addDummyViews()
/packages/apps/Contacts/src/com/android/contacts/logging/
DQuickContactEvent.java67 public static final int SHORTCUT = 8; field in QuickContactEvent.ActionType
/packages/apps/Launcher3/src/com/android/launcher3/logging/
DDumpTargetWrapper.java88 dt.itemType = ItemType.SHORTCUT; in newItemTarget()
DLoggerUtils.java127 t.itemType = ItemType.SHORTCUT; in newItemTarget()
/packages/apps/Launcher3/src/com/android/launcher3/shortcuts/
DShortcutsItemView.java128 if (shortcutType == PopupPopulator.Item.SHORTCUT) { in addShortcutView()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DPersonalDictionaryLookup.java603 final int shortcutIndex = cursor.getColumnIndex(UserDictionary.Words.SHORTCUT); in loadPersonalDictionary()
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
DQuickContactActivity.java2877 ActionType.SHORTCUT, /* thirdPartyAction */ null); in onOptionsItemSelected()