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 271 ItemInfo modelItem = sBgItemsIdMap.get(itemId);
272 if (modelItem != null && item != modelItem) {
274 if (modelItem instanceof ShortcutInfo && item instanceof ShortcutInfo) {
275 ShortcutInfo modelShortcut = (ShortcutInfo) modelItem;
297 // the modelItem needs to match up perfectly with item if our model is
299 // modelItem == item or the equality check above
301 "modelItem: " +
302 ((modelItem != null) ? modelItem.toString() : "null")
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherModel.java 461 ItemInfo modelItem = sBgItemsIdMap.get(itemId);
462 if (modelItem != null && item != modelItem) {
464 if (modelItem instanceof ShortcutInfo && item instanceof ShortcutInfo) {
465 ShortcutInfo modelShortcut = (ShortcutInfo) modelItem;
487 // the modelItem needs to match up perfectly with item if our model is
489 // modelItem == item or the equality check above
491 "modelItem: " +
492 ((modelItem != null) ? modelItem.toString() : "null")
    [all...]

Completed in 33 milliseconds