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

  /packages/apps/Launcher2/src/com/android/launcher2/
ItemInfo.java 68 int cellY = -1;
105 cellY = info.cellY;
139 values.put(LauncherSettings.Favorites.CELLY, cellY);
145 void updateValuesWithCoordinates(ContentValues values, int cellX, int cellY) {
147 values.put(LauncherSettings.Favorites.CELLY, cellY);
185 + " screen=" + screen + " cellX=" + cellX + " cellY=" + cellY + " spanX=" + span
    [all...]
PagedViewCellLayout.java 119 lp.cellY >= 0 && (lp.cellY <= mCellCountY - 1)) {
410 public int cellY;
460 this.cellY = source.cellY;
465 public LayoutParams(int cellX, int cellY, int cellHSpan, int cellVSpan) {
468 this.cellY = cellY;
479 final int myCellY = cellY;
504 return "(" + this.cellX + ", " + this.cellY + ", "
    [all...]
InstallShortcutReceiver.java 232 int cellX, cellY, spanX, spanY;
238 cellY = item.cellY;
242 for (int y = cellY; 0 <= y && y < cellY + spanY && y < yCount; y++) {
CellLayout.java 587 if (lp.cellX >= 0 && lp.cellX <= mCountX - 1 && lp.cellY >= 0 && lp.cellY <= mCountY - 1) {
691 cellInfo.cellY = lp.cellY;
708 cellInfo.cellY = cellXY[1];
741 cellInfo.cellY = -1;
787 * @param cellY Y coordinate of the cell
791 void cellToPoint(int cellX, int cellY, int[] result) {
796 result[1] = vStartPadding + cellY * (mCellHeight + mHeightGap);
803 * @param cellY Y coordinate of the cel
    [all...]
Folder.java 227 mEmptyCell[1] = item.cellY;
325 int lhIndex = lhs.cellY * mNumCols + lhs.cellX;
326 int rhIndex = rhs.cellY * mNumCols + rhs.cellX;
349 item.cellY = y;
530 item.cellY = emptyCell[1];
550 if (mContent.getChildAt(item.cellX, item.cellY) != null || item.cellX < 0 || item.cellY < 0
551 || item.cellX >= mContent.getCountX() || item.cellY >= mContent.getCountY()) {
560 new CellLayout.LayoutParams(item.cellX, item.cellY, item.spanX, item.spanY);
749 info.cellX, info.cellY);
    [all...]
LauncherModel.java 239 * <container, screen, cellX, cellY>
242 int screen, int cellX, int cellY) {
245 addItemToDatabase(context, item, container, screen, cellX, cellY, false);
248 moveItemInDatabase(context, item, container, screen, cellX, cellY);
294 * Move an item in the DB to a new <container, screen, cellX, cellY>
297 final int screen, final int cellX, final int cellY) {
300 item.cellY = cellY;
306 item.screen = ((Launcher) context).getHotseat().getOrderInHotseat(cellX, cellY);
314 values.put(LauncherSettings.Favorites.CELLY, item.cellY)
    [all...]
AppWidgetResizeFrame.java 256 int cellY = lp.useTmpCoords ? lp.tmpCellY : lp.cellY;
278 cellYInc = Math.max(-cellY, vSpanInc);
281 vSpanInc = Math.min(cellY, vSpanInc);
285 vSpanInc = Math.min(countY - (cellY + spanY), vSpanInc);
301 cellY += cellYInc;
307 if (mCellLayout.createAreaForResize(cellX, cellY, spanX, spanY, mWidgetView,
310 lp.tmpCellY = cellY;
ShortcutAndWidgetContainer.java 65 (lp.cellY <= y) && (y < lp.cellY + lp.cellVSpan)) {
Launcher.java 317 int cellY;
573 args.cellY);
580 args.cellY);
643 args.cellY = mPendingAddInfo.cellY;
    [all...]
FocusHelper.java 581 int lvIndex = (llp.cellY * cellCountX) + llp.cellX;
582 int rvIndex = (rlp.cellY * cellCountX) + rlp.cellX;
628 final int row = lp.cellY;
638 boolean satisfiesRow = (lineDelta < 0) ? (tmpLp.cellY < row) : (tmpLp.cellY > row);
642 Math.pow(tmpLp.cellY - lp.cellY, 2));
    [all...]
ShortcutInfo.java 160 + " cellX=" + cellX + " cellY=" + cellY + " spanX=" + spanX + " spanY=" + spanY
FolderIcon.java 295 LauncherModel.addOrMoveItemInDatabase(mLauncher, item, mInfo.id, 0, item.cellX, item.cellY);
302 mFolderRingAnimator.setCell(lp.cellX, lp.cellY);
339 item.cellY = -1;
Workspace.java 562 lp.cellY = y;
578 Log.w(TAG, "Failed to add to item at (" + lp.cellX + "," + lp.cellY + ") to CellLayout");
    [all...]
  /packages/apps/Launcher2/
print_db.py 82 cellY = cell["cellY"]
201 cellY = row["cellY"]
204 for j in range(cellY, cellY+spanY):
207 screen[cellY][cellX] = row

Completed in 763 milliseconds