HomeSort by relevance Sort by last modified time
    Searched refs:modelItem (Results 1 - 2 of 2) sorted by null

  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherModel.java 282 ItemInfo modelItem = sBgItemsIdMap.get(itemId);
283 if (modelItem != null && item != modelItem) {
285 if (modelItem instanceof ShortcutInfo && item instanceof ShortcutInfo) {
286 ShortcutInfo modelShortcut = (ShortcutInfo) modelItem;
308 // the modelItem needs to match up perfectly with item if our model is
310 // modelItem == item or the equality check above
312 "modelItem: " +
313 ((modelItem != null) ? modelItem.toString() : "null")
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherModel.java 648 ItemInfo modelItem = sBgItemsIdMap.get(itemId);
649 if (modelItem != null && item != modelItem) {
651 if (modelItem instanceof ShortcutInfo && item instanceof ShortcutInfo) {
652 ShortcutInfo modelShortcut = (ShortcutInfo) modelItem;
674 // the modelItem needs to match up perfectly with item if our model is
676 // modelItem == item or the equality check above
678 "modelItem: " +
679 ((modelItem != null) ? modelItem.toString() : "null")
    [all...]

Completed in 201 milliseconds