HomeSort by relevance Sort by last modified time
    Searched refs:spanX (Results 1 - 25 of 44) sorted by null

1 2

  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_zoom.h 47 GLint width, GLint spanX, GLint spanY,
52 GLint width, GLint spanX, GLint spanY,
s_zoom.c 42 * \param spanX, spanY position of span being drawing
50 GLint spanX, GLint spanY, GLint width,
56 ASSERT(spanX >= imageX);
62 c0 = imageX + (GLint) ((spanX - imageX) * ctx->Pixel.ZoomX);
63 c1 = imageX + (GLint) ((spanX + width - imageX) * ctx->Pixel.ZoomX);
362 GLint width, GLint spanX, GLint spanY,
369 if (!compute_zoomed_bounds(ctx, imgX, imgY, spanX, spanY, width,
384 GLint j = unzoom_x(ctx->Pixel.ZoomX, imgX, x0 + i) - spanX;
409 GLint width, GLint spanX, GLint spanY,
418 if (!compute_zoomed_bounds(ctx, imgX, imgY, spanX, spanY, width
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_zoom.h 47 GLint width, GLint spanX, GLint spanY,
52 GLint width, GLint spanX, GLint spanY,
s_zoom.c 42 * \param spanX, spanY position of span being drawing
50 GLint spanX, GLint spanY, GLint width,
56 ASSERT(spanX >= imageX);
62 c0 = imageX + (GLint) ((spanX - imageX) * ctx->Pixel.ZoomX);
63 c1 = imageX + (GLint) ((spanX + width - imageX) * ctx->Pixel.ZoomX);
362 GLint width, GLint spanX, GLint spanY,
369 if (!compute_zoomed_bounds(ctx, imgX, imgY, spanX, spanY, width,
384 GLint j = unzoom_x(ctx->Pixel.ZoomX, imgX, x0 + i) - spanX;
405 GLint width, GLint spanX, GLint spanY,
414 if (!compute_zoomed_bounds(ctx, imgX, imgY, spanX, spanY, width
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
CellLayout.java 741 cellInfo.spanX = lp.cellHSpan;
758 cellInfo.spanX = 1;
791 cellInfo.spanX = 0;
    [all...]
LauncherAppWidgetInfo.java 61 spanX = -1;
85 AppWidgetResizeFrame.updateWidgetSizeRanges(hostView, launcher, spanX, spanY);
PendingAddItemInfo.java 78 spanX = copy.spanX;
ItemInfo.java 81 int spanX = 1;
128 spanX = info.spanX;
173 values.put(LauncherSettings.Favorites.SPANX, spanX);
220 + " screen=" + screen + " cellX=" + cellX + " cellY=" + cellY + " spanX=" + spanX
AppWidgetResizeFrame.java 256 int spanX = lp.cellHSpan;
275 hSpanInc = Math.min(countX - (cellX + spanX), hSpanInc);
297 spanX += hSpanInc;
324 if (mCellLayout.createAreaForResize(cellX, cellY, spanX, spanY, mWidgetView,
328 lp.cellHSpan = spanX;
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) {
360 int landWidth = (int) ((spanX * cellWidth + (spanX - 1) * widthGap) / density)
    [all...]
Workspace.java 484 * the child are defined by x, y, spanX and spanY.
490 * @param spanX The number of cells spanned horizontally 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.
505 * @param spanX The number of cells spanned horizontally 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);
555 lp.cellHSpan = spanX;
559 if (spanX < 0 && spanY < 0)
    [all...]
InstallShortcutReceiver.java 343 int cellX, cellY, spanX, spanY;
350 spanX = item.spanX;
352 for (int x = cellX; 0 <= x && x < cellX + spanX && x < xCount; x++) {
ShortcutInfo.java 154 + " cellX=" + cellX + " cellY=" + cellY + " spanX=" + spanX + " spanY=" + spanY
  /packages/apps/Launcher3/src/com/android/launcher3/
CellLayout.java 758 void regionToCenterPoint(int cellX, int cellY, int spanX, int spanY, int[] result) {
762 (spanX * mCellWidth + (spanX - 1) * mWidthGap) / 2;
774 void regionToRect(int cellX, int cellY, int spanX, int spanY, Rect result) {
779 result.set(left, top, left + (spanX * mCellWidth + (spanX - 1) * mWidthGap),
    [all...]
LauncherAppWidgetInfo.java 95 spanX = -1;
124 AppWidgetResizeFrame.updateWidgetSizeRanges(hostView, launcher, spanX, spanY);
ItemInfo.java 83 public int spanX = 1;
136 spanX = info.spanX;
162 values.put(LauncherSettings.Favorites.SPANX, spanX);
213 + " screen=" + screenId + " cellX=" + cellX + " cellY=" + cellY + " spanX=" + spanX
PendingAddItemInfo.java 96 spanX = copy.spanX;
AppWidgetResizeFrame.java 253 int spanX = lp.cellHSpan;
272 hSpanInc = Math.min(countX - (cellX + spanX), hSpanInc);
294 spanX += hSpanInc;
321 if (mCellLayout.createAreaForResize(cellX, cellY, spanX, spanY, mWidgetView,
325 lp.cellHSpan = spanX;
330 updateWidgetSizeRanges(mWidgetView, mLauncher, spanX, spanY);
337 int spanX, int spanY) {
339 getWidgetSizeRanges(launcher, spanX, spanY, mTmpRect);
344 static Rect getWidgetSizeRanges(Launcher launcher, int spanX, int spanY, Rect rect) {
357 int landWidth = (int) ((spanX * cellWidth + (spanX - 1) * widthGap) / density)
    [all...]
FolderInfo.java 121 + " cellX=" + cellX + " cellY=" + cellY + " spanX=" + spanX
Workspace.java 656 int spanX = customScreen.getCountX();
658 CellLayout.LayoutParams lp = new CellLayout.LayoutParams(0, 0, spanX, spanY);
    [all...]
Hotseat.java 193 fi.spanX = 1;
204 fi.spanX, fi.spanY);
  /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):
  /frameworks/base/core/java/android/view/
ScaleGestureDetector.java 391 final float spanX = devX * 2;
397 span = FloatMath.sqrt(spanX * spanX + spanY * spanY);
413 mPrevSpanX = mCurrSpanX = spanX;
421 mPrevSpanX = mCurrSpanX = spanX;
430 mCurrSpanX = spanX;
  /packages/apps/Launcher3/
print_db.py 114 spanX = cell["spanX"]
123 spanX, spanY,
124 (CELL_SIZE*spanX), (CELL_SIZE*spanY),
164 if d["spanX"] is None:
165 d["spanX"] = 1
171 COLUMNS = max(COLUMNS, d["cellX"] + d["spanX"])
172 ROWS = max(ROWS, d["cellX"] + d["spanX"])
263 spanX = row["spanX"]
    [all...]
  /packages/apps/Launcher3/protos/
backup.proto 80 optional int32 spanX = 8;
  /development/apps/WidgetPreview/src/com/android/widgetpreview/
WidgetPreviewActivity.java 210 int spanX = (width + smallerSize) / smallerSize;
215 width = spanX * previewCellSize + ((spanX - 1) * widthGap);

Completed in 430 milliseconds

1 2