Home
last modified time | relevance | path

Searched refs:isValidExtraType (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/model/
DModelUtils.java18 import static com.android.launcher3.Utilities.isValidExtraType;
143 if (!isValidExtraType(data, Intent.EXTRA_SHORTCUT_INTENT, Intent.class) in fromLegacyShortcutIntent()
144 || !(isValidExtraType(data, Intent.EXTRA_SHORTCUT_ICON_RESOURCE, in fromLegacyShortcutIntent()
146 || !(isValidExtraType(data, Intent.EXTRA_SHORTCUT_ICON, Bitmap.class))) { in fromLegacyShortcutIntent()
/packages/apps/Launcher3/src/com/android/launcher3/
DUtilities.java747 public static boolean isValidExtraType(Intent intent, String key, Class type) { in isValidExtraType() method in Utilities