/packages/apps/Launcher2/src/com/android/launcher2/ |
ItemInfo.java | 72 int spanX = 1; 96 spanX = info.spanX; 115 values.put(LauncherSettings.Favorites.SPANX, spanX); 160 + " screen=" + screen + " cellX=" + cellX + " cellY=" + cellY + " spanX=" + spanX
|
CellLayout.java | 792 cellInfo.spanX = lp.cellHSpan; 809 cellInfo.spanX = 1; [all...] |
InstallShortcutReceiver.java | 95 int cellX, cellY, spanX, spanY; 102 spanX = item.spanX; 104 for (int x = cellX; x < cellX + spanX && x < xCount; x++) {
|
LauncherAppWidgetInfo.java | 60 spanX = -1;
|
Workspace.java | 423 * the child are defined by x, y, spanX and spanY. 429 * @param spanX The number of cells spanned horizontally by the child. 432 void addInScreen(View child, long container, int screen, int x, int y, int spanX, int spanY) { 433 addInScreen(child, container, screen, x, y, spanX, spanY, false); 438 * the child are defined by x, y, spanX and spanY. 444 * @param spanX The number of cells spanned horizontally by the child. 448 void addInScreen(View child, long container, int screen, int x, int y, int spanX, int spanY, 488 lp = new CellLayout.LayoutParams(x, y, spanX, spanY); 492 lp.cellHSpan = spanX; 496 if (spanX < 0 && spanY < 0) [all...] |
PagedViewCellLayout.java | 308 int spanX = (width + smallerSize) / smallerSize; 311 return new int[] { spanX, spanY };
|
Folder.java | 487 if (mContent.findCellForSpan(emptyCell, item.spanX, item.spanY)) { 519 new CellLayout.LayoutParams(item.cellX, item.cellY, item.spanX, item.spanY); [all...] |
LauncherModel.java | 273 * Resize an item in the DB to a new <spanX, spanY, cellX, cellY> 276 final int cellY, final int spanX, final int spanY) { 277 item.spanX = spanX; 284 values.put(LauncherSettings.Favorites.SPANX, spanX); 330 LauncherSettings.Favorites.SPANX, LauncherSettings.Favorites.SPANY }, null, null, null); 337 final int spanXIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.SPANX); 345 item.spanX = c.getInt(spanXIndex); 471 long container, int screen, int localCellX, int localCellY, int spanX, int spanY) [all...] |
LauncherProvider.java | 250 "spanX INTEGER," + 659 values.put(LauncherSettings.Favorites.SPANX, 4); 662 values.put(LauncherSettings.Favorites.SPANX, 2); [all...] |
AppsCustomizePagedView.java | 535 createItemInfo.spanX = spanXY[0]; 552 createItemInfo.spanX = createItemInfo.spanY = 1; 567 mLauncher.getWorkspace().onDragStartedWithItemSpans(createItemInfo.spanX, 618 !layout.findCellForSpan(null, itemInfo.spanX, itemInfo.spanY); [all...] |
Launcher.java | [all...] |
/packages/apps/Launcher2/ |
print_db.py | 83 spanX = cell["spanX"] 92 spanX, spanY, 93 (CELL_SIZE*spanX), (CELL_SIZE*spanY), 202 spanX = row["spanX"] 205 for k in range(cellX, cellX+spanX):
|
/development/apps/WidgetPreview/src/com/android/widgetpreview/ |
WidgetPreviewActivity.java | 210 int spanX = (width + smallerSize) / smallerSize; 215 width = spanX * previewCellSize + ((spanX - 1) * widthGap);
|
/development/apps/OBJViewer/com/android/objviewer/ |
OBJViewer.java | 184 float spanX = obj.getBoundsMaxX() - obj.getBoundsMinX(); 187 float maxSpan = Math.max(spanX, spanY);
|