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

  /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
  /packages/apps/Launcher2/src/com/android/launcher2/
ItemInfo.java 68 int cellY = -1;
111 cellY = info.cellY;
146 values.put(LauncherSettings.Favorites.CELLY, cellY);
151 void updateValuesWithCoordinates(ContentValues values, int cellX, int cellY) {
153 values.put(LauncherSettings.Favorites.CELLY, cellY);
191 + " screen=" + screen + " cellX=" + cellX + " cellY=" + cellY + " spanX=" + span
    [all...]
InstallShortcutReceiver.java 343 int cellX, cellY, spanX, spanY;
349 cellY = item.cellY;
353 for (int y = cellY; 0 <= y && y < cellY + spanY && y < yCount; y++) {
AppWidgetResizeFrame.java 259 int cellY = lp.useTmpCoords ? lp.tmpCellY : lp.cellY;
281 cellYInc = Math.max(-cellY, vSpanInc);
284 vSpanInc = Math.min(cellY, vSpanInc);
288 vSpanInc = Math.min(countY - (cellY + spanY), vSpanInc);
306 cellY += cellYInc;
324 if (mCellLayout.createAreaForResize(cellX, cellY, spanX, spanY, mWidgetView,
327 lp.tmpCellY = cellY;
PagedViewCellLayout.java 108 lp.cellY >= 0 && (lp.cellY <= mCellCountY - 1)) {
399 public int cellY;
449 this.cellY = source.cellY;
454 public LayoutParams(int cellX, int cellY, int cellHSpan, int cellVSpan) {
457 this.cellY = cellY;
468 final int myCellY = cellY;
493 return "(" + this.cellX + ", " + this.cellY + ", "
    [all...]
CellLayout.java 636 if (lp.cellX >= 0 && lp.cellX <= mCountX - 1 && lp.cellY >= 0 && lp.cellY <= mCountY - 1) {
740 cellInfo.cellY = lp.cellY;
757 cellInfo.cellY = cellXY[1];
790 cellInfo.cellY = -1;
836 * @param cellY Y coordinate of the cell
840 void cellToPoint(int cellX, int cellY, int[] result) {
845 result[1] = vStartPadding + cellY * (mCellHeight + mHeightGap);
852 * @param cellY Y coordinate of the cel
    [all...]
Launcher.java 337 int cellY;
600 args.cellY);
607 args.cellY);
681 args.cellY = mPendingAddInfo.cellY;
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
ItemInfo.java 68 int cellY = -1;
111 cellY = info.cellY;
139 values.put(LauncherSettings.Favorites.CELLY, cellY);
144 void updateValuesWithCoordinates(ContentValues values, int cellX, int cellY) {
146 values.put(LauncherSettings.Favorites.CELLY, cellY);
184 + " screen=" + screenId + " cellX=" + cellX + " cellY=" + cellY + " spanX=" + span
    [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);
303 cellY += cellYInc;
321 if (mCellLayout.createAreaForResize(cellX, cellY, spanX, spanY, mWidgetView,
324 lp.tmpCellY = cellY;
PagedViewCellLayout.java 102 lp.cellY >= 0 && (lp.cellY <= mCellCountY - 1)) {
393 public int cellY;
443 this.cellY = source.cellY;
448 public LayoutParams(int cellX, int cellY, int cellHSpan, int cellVSpan) {
451 this.cellY = cellY;
463 final int myCellY = cellY;
488 return "(" + this.cellX + ", " + this.cellY + ", "
    [all...]
LauncherProvider.java 417 "cellY INTEGER," +
564 final int cellYIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.CELLY);
584 values.put(LauncherSettings.Favorites.CELLY, c.getInt(cellYIndex));
    [all...]
LauncherModel.java 242 int cellX, cellY, spanX, spanY;
248 cellY = item.cellY;
252 for (int y = cellY; 0 <= y && y < cellY + spanY && y < yCount; y++) {
516 * <container, screen, cellX, cellY>
519 long screenId, int cellX, int cellY) {
522 addItemToDatabase(context, item, container, screenId, cellX, cellY, false);
525 moveItemInDatabase(context, item, container, screenId, cellX, cellY);
544 modelShortcut.cellY == shortcut.cellY &
    [all...]
CellLayout.java 632 if (lp.cellX >= 0 && lp.cellX <= mCountX - 1 && lp.cellY >= 0 && lp.cellY <= mCountY - 1) {
739 cellInfo.cellY = lp.cellY;
756 cellInfo.cellY = cellXY[1];
789 cellInfo.cellY = -1;
835 * @param cellY Y coordinate of the cell
839 void cellToPoint(int cellX, int cellY, int[] result) {
844 result[1] = vStartPadding + cellY * (mCellHeight + mHeightGap);
851 * @param cellY Y coordinate of the cel
    [all...]
Launcher.java 366 int cellY;
743 args.cellY);
750 args.cellY);
    [all...]
  /packages/apps/Launcher3/
print_db.py 113 cellY = cell["cellY"]
262 cellY = row["cellY"]
265 for j in range(cellY, cellY+spanY):
268 screen[cellY][cellX] = row

Completed in 1164 milliseconds