Home | History | Annotate | Download | only in launcher2

Lines Matching full:occupied

913         // check & update map of what's occupied; used to discard overlapping/invalid items
914 private boolean checkItemPlacement(ItemInfo occupied[][][], ItemInfo item) {
923 // test and update the occupied state accordingly
924 if (occupied[Launcher.SCREEN_COUNT][item.screen][0] != null) {
927 + ") occupied by " + occupied[Launcher.SCREEN_COUNT][item.screen][0]);
930 occupied[Launcher.SCREEN_COUNT][item.screen][0] = item;
941 if (occupied[containerIndex][x][y] != null) {
945 + ") occupied by "
946 + occupied[containerIndex][x][y]);
953 occupied[containerIndex][x][y] = item;
983 final ItemInfo occupied[][][] =
1058 // check & update map of what's occupied
1059 if (!checkItemPlacement(occupied, info)) {
1104 // check & update map of what's occupied
1105 if (!checkItemPlacement(occupied, folderInfo)) {
1152 // check & update map of what's occupied
1153 if (!checkItemPlacement(occupied, appWidgetInfo)) {
1197 line += ((occupied[s][x][y] != null) ? "#" : ".");