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

  /packages/apps/Launcher2/
print_db.py 81 cellX = cell["cellX"]
200 cellX = row["cellX"]
205 for k in range(cellX, cellX+spanX):
207 screen[cellY][cellX] = row
  /packages/apps/Launcher2/src/com/android/launcher2/
ItemInfo.java 63 int cellX = -1;
104 cellX = info.cellX;
138 values.put(LauncherSettings.Favorites.CELLX, cellX);
145 void updateValuesWithCoordinates(ContentValues values, int cellX, int cellY) {
146 values.put(LauncherSettings.Favorites.CELLX, cellX);
185 + " screen=" + screen + " cellX=" + cellX + " cellY=" + cellY + " spanX=" + span
    [all...]
InstallShortcutReceiver.java 232 int cellX, cellY, spanX, spanY;
237 cellX = item.cellX;
241 for (int x = cellX; 0 <= x && x < cellX + spanX && x < xCount; x++) {
AppWidgetResizeFrame.java 255 int cellX = lp.useTmpCoords ? lp.tmpCellX : lp.cellX;
264 cellXInc = Math.max(-cellX, hSpanInc);
267 hSpanInc = Math.min(cellX, hSpanInc);
272 hSpanInc = Math.min(countX - (cellX + spanX), hSpanInc);
295 cellX += cellXInc;
307 if (mCellLayout.createAreaForResize(cellX, cellY, spanX, spanY, mWidgetView,
309 lp.tmpCellX = cellX;
PagedViewCellLayout.java 118 if (lp.cellX >= 0 && lp.cellX <= (mCellCountX - 1) &&
404 public int cellX;
459 this.cellX = source.cellX;
465 public LayoutParams(int cellX, int cellY, int cellHSpan, int cellVSpan) {
467 this.cellX = cellX;
478 final int myCellX = cellX;
504 return "(" + this.cellX + ", " + this.cellY + ", "
    [all...]
CellLayout.java 587 if (lp.cellX >= 0 && lp.cellX <= mCountX - 1 && lp.cellY >= 0 && lp.cellY <= mCountY - 1) {
690 cellInfo.cellX = lp.cellX;
707 cellInfo.cellX = cellXY[0];
740 cellInfo.cellX = -1;
786 * @param cellX X coordinate of the cell
791 void cellToPoint(int cellX, int cellY, int[] result) {
795 result[0] = hStartPadding + cellX * (mCellWidth + mWidthGap);
802 * @param cellX X coordinate of the cel
    [all...]
Launcher.java 316 int cellX;
572 completeAddApplication(args.intent, args.container, args.screen, args.cellX,
579 completeAddShortcut(args.intent, args.container, args.screen, args.cellX,
642 args.cellX = mPendingAddInfo.cellX;
    [all...]

Completed in 412 milliseconds