Home | History | Annotate | Download | only in launcher2

Lines Matching refs:occupied

1206         // check & update map of what's occupied; used to discard overlapping/invalid items
1207 private boolean checkItemPlacement(ItemInfo occupied[][][], ItemInfo item) {
1216 // test and update the occupied state accordingly
1217 if (occupied[Launcher.SCREEN_COUNT][item.screen][0] != null) {
1220 + ") occupied by " + occupied[Launcher.SCREEN_COUNT][item.screen][0]);
1223 occupied[Launcher.SCREEN_COUNT][item.screen][0] = item;
1234 if (occupied[containerIndex][x][y] != null) {
1238 + ") occupied by "
1239 + occupied[containerIndex][x][y]);
1246 occupied[containerIndex][x][y] = item;
1280 final ItemInfo occupied[][][] =
1367 // check & update map of what's occupied
1368 if (!checkItemPlacement(occupied, info)) {
1413 // check & update map of what's occupied
1414 if (!checkItemPlacement(occupied, folderInfo)) {
1465 // check & update map of what's occupied
1466 if (!checkItemPlacement(occupied, appWidgetInfo)) {
1510 line += ((occupied[s][x][y] != null) ? "#" : ".");