HomeSort by relevance Sort by last modified time
    Searched full:spany (Results 1 - 25 of 29) sorted by null

1 2

  /packages/apps/Launcher2/src/com/android/launcher2/
CellLayout.java 742 cellInfo.spanY = lp.cellVSpan;
759 cellInfo.spanY = 1;
792 cellInfo.spanY = 0;
    [all...]
ItemInfo.java 78 int spanY = 1;
113 spanY = info.spanY;
148 values.put(LauncherSettings.Favorites.SPANY, spanY);
192 + " spanY=" + spanY + " dropPos=" + dropPos + ")";
AppWidgetResizeFrame.java 257 int spanY = lp.cellVSpan;
288 vSpanInc = Math.min(countY - (cellY + spanY), vSpanInc);
305 spanY += vSpanInc;
324 if (mCellLayout.createAreaForResize(cellX, cellY, spanX, spanY, mWidgetView,
329 lp.cellVSpan = spanY;
333 updateWidgetSizeRanges(mWidgetView, mLauncher, spanX, spanY);
340 int spanX, int spanY) {
342 getWidgetSizeRanges(launcher, spanX, spanY, mTmpRect);
347 static Rect getWidgetSizeRanges(Launcher launcher, int spanX, int spanY, Rect rect) {
361 int landHeight = (int) ((spanY * cellHeight + (spanY - 1) * heightGap) / density)
    [all...]
LauncherAppWidgetInfo.java 61 spanY = -1;
84 AppWidgetResizeFrame.updateWidgetSizeRanges(hostView, launcher, spanX, spanY);
PendingAddItemInfo.java 97 spanY = copy.spanY;
Workspace.java 484 * the child are defined by x, y, spanX and spanY.
491 * @param spanY The number of cells spanned vertically by the child.
493 void addInScreen(View child, long container, int screen, int x, int y, int spanX, int spanY) {
494 addInScreen(child, container, screen, x, y, spanX, spanY, false);
499 * the child are defined by x, y, spanX and spanY.
506 * @param spanY The number of cells spanned vertically by the child.
509 void addInScreen(View child, long container, int screen, int x, int y, int spanX, int spanY,
550 lp = new CellLayout.LayoutParams(x, y, spanX, spanY);
556 lp.cellVSpan = spanY;
559 if (spanX < 0 && spanY < 0)
    [all...]
LauncherSettings.java 168 static final String SPANY = "spanY";
ShortcutInfo.java 149 + " cellX=" + cellX + " cellY=" + cellY + " spanX=" + spanX + " spanY=" + spanY
InstallShortcutReceiver.java 343 int cellX, cellY, spanX, spanY;
351 spanY = item.spanY;
353 for (int y = cellY; 0 <= y && y < cellY + spanY && y < yCount; y++) {
LauncherProvider.java 285 "spanY INTEGER," +
726 values.put(LauncherSettings.Favorites.SPANY, 1);
729 values.put(LauncherSettings.Favorites.SPANY, 2);
    [all...]
LauncherModel.java 286 modelShortcut.spanY == shortcut.spanY &&
441 * Move and/or resize item in the DB to a new <container, screen, cellX, cellY, spanX, spanY>
444 final int screen, final int cellX, final int cellY, final int spanX, final int spanY) {
453 item.spanY = spanY;
469 values.put(LauncherSettings.Favorites.SPANY, item.spanY);
513 LauncherSettings.Favorites.SPANX, LauncherSettings.Favorites.SPANY }, null, null, null);
521 final int spanYIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.SPANY);
    [all...]
AppsCustomizePagedView.java 563 AppWidgetResizeFrame.getWidgetSizeRanges(mLauncher, info.spanX, info.spanY, mTmpRect);
627 info.spanY, info, false);
725 int spanY = createItemInfo.spanY;
726 int[] size = mLauncher.getWorkspace().estimateItemSize(spanX, spanY,
738 createWidgetInfo.previewImage, createWidgetInfo.icon, spanX, spanY,
765 createItemInfo.spanX = createItemInfo.spanY = 1;
    [all...]
PagedViewCellLayout.java 298 int spanY = (height + smallerSize) / smallerSize;
300 return new int[] { spanX, spanY };
WidgetPreviewLoader.java 415 public int maxHeightForWidgetPreview(int spanY) {
417 mWidgetSpacingLayout.estimateCellHeight(spanY));
Folder.java 516 if (mContent.findCellForSpan(emptyCell, item.spanX, item.spanY)) {
548 new CellLayout.LayoutParams(item.cellX, item.cellY, item.spanX, item.spanY);
    [all...]
  /packages/apps/Launcher2/
print_db.py 84 spanY = cell["spanY"]
92 spanX, spanY,
93 (CELL_SIZE*spanX), (CELL_SIZE*spanY),
203 spanY = row["spanY"]
204 for j in range(cellY, cellY+spanY):
fill_screens.py 65 insert = "INSERT into favorites (_id, title, intent, container, screen, cellX, cellY, spanX, spanY, itemType, appWidgetId, iconType) VALUES (%d, '%s', '%s', %d, %d, %d, %d, %d, %d, %d, %d, %d)"
73 insert = "INSERT into favorites (_id, title, intent, container, screen, cellX, cellY, spanX, spanY, itemType, appWidgetId, iconType) VALUES (%d, '%s', '%s', %d, %d, %d, %d, %d, %d, %d, %d, %d)"
  /packages/apps/Launcher2/res/xml-sw720dp/
default_workspace.xml 28 launcher:spanY="1" />
38 launcher:spanY="2" />
  /packages/apps/Launcher2/res/xml/
default_workspace.xml 28 launcher:spanY="1" />
38 launcher:spanY="2" />
  /packages/apps/Launcher2/res/xml-sw600dp/
default_workspace.xml 28 launcher:spanY="1" />
38 launcher:spanY="2" />
  /frameworks/base/core/java/android/view/
ScaleGestureDetector.java 322 final float spanY = devY * 2;
323 final float span = FloatMath.sqrt(spanX * spanX + spanY * spanY);
338 mPrevSpanY = mCurrSpanY = spanY;
344 mPrevSpanY = mCurrSpanY = spanY;
353 mCurrSpanY = spanY;
  /development/apps/WidgetPreview/src/com/android/widgetpreview/
WidgetPreviewActivity.java 211 int spanY = (height + smallerSize) / smallerSize;
216 height = spanY * previewCellSize + ((spanY - 1) * heightGap);
  /development/apps/OBJViewer/com/android/objviewer/
OBJViewer.java 185 float spanY = obj.getBoundsMaxY() - obj.getBoundsMinY();
187 float maxSpan = Math.max(spanX, spanY);
  /frameworks/base/docs/html/training/gestures/
scale.jd 378 float spanY = ScaleGestureDetectorCompat.
382 float newHeight = lastSpanY / spanY * mCurrentViewport.height();
408 lastSpanY = spanY;
  /packages/apps/Launcher2/res/values/
attrs.xml 151 <attr name="spanY" format="string" />

Completed in 281 milliseconds

1 2