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;
405 GLint width, GLint spanX, GLint spanY,
414 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/
LauncherAppWidgetInfo.java 60 spanX = -1;
84 AppWidgetResizeFrame.updateWidgetSizeRanges(hostView, launcher, spanX, spanY);
ItemInfo.java 73 int spanX = 1;
112 spanX = info.spanX;
147 values.put(LauncherSettings.Favorites.SPANX, spanX);
191 + " screen=" + screen + " cellX=" + cellX + " cellY=" + cellY + " spanX=" + spanX
CellLayout.java 741 cellInfo.spanX = lp.cellHSpan;
758 cellInfo.spanX = 1;
791 cellInfo.spanX = 0;
    [all...]
PendingAddItemInfo.java 96 spanX = copy.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 483 * the child are defined by x, y, spanX and spanY.
489 * @param spanX The number of cells spanned horizontally by the child.
492 void addInScreen(View child, long container, int screen, int x, int y, int spanX, int spanY) {
493 addInScreen(child, container, screen, x, y, spanX, spanY, false);
498 * the child are defined by x, y, spanX and spanY.
504 * @param spanX The number of cells spanned horizontally by the child.
508 void addInScreen(View child, long container, int screen, int x, int y, int spanX, int spanY,
549 lp = new CellLayout.LayoutParams(x, y, spanX, spanY);
554 lp.cellHSpan = spanX;
558 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 149 + " cellX=" + cellX + " cellY=" + cellY + " spanX=" + spanX + " spanY=" + spanY
  /packages/apps/Launcher3/src/com/android/launcher3/
ItemInfo.java 73 int spanX = 1;
112 spanX = info.spanX;
136 values.put(LauncherSettings.Favorites.SPANX, spanX);
180 + " screen=" + screenId + " cellX=" + cellX + " cellY=" + cellY + " spanX=" + spanX
CellLayout.java 727 cellInfo.spanX = lp.cellHSpan;
744 cellInfo.spanX = 1;
777 cellInfo.spanX = 0;
854 void regionToCenterPoint(int cellX, int cellY, int spanX, int spanY, int[] result) {
858 (spanX * mCellWidth + (spanX - 1) * mWidthGap) / 2;
    [all...]
LauncherAppWidgetInfo.java 60 spanX = -1;
85 AppWidgetResizeFrame.updateWidgetSizeRanges(hostView, launcher, spanX, spanY);
PendingAddItemInfo.java 96 spanX = copy.spanX;
AppWidgetResizeFrame.java 255 int spanX = lp.cellHSpan;
274 hSpanInc = Math.min(countX - (cellX + spanX), hSpanInc);
296 spanX += hSpanInc;
323 if (mCellLayout.createAreaForResize(cellX, cellY, spanX, spanY, mWidgetView,
327 lp.cellHSpan = spanX;
332 updateWidgetSizeRanges(mWidgetView, mLauncher, spanX, spanY);
339 int spanX, int spanY) {
341 getWidgetSizeRanges(launcher, spanX, spanY, mTmpRect);
346 static Rect getWidgetSizeRanges(Launcher launcher, int spanX, int spanY, Rect rect) {
359 int landWidth = (int) ((spanX * cellWidth + (spanX - 1) * widthGap) / density)
    [all...]
Workspace.java 611 int spanX = customScreen.getCountX();
613 CellLayout.LayoutParams lp = new CellLayout.LayoutParams(0, 0, spanX, spanY);
773 int x, int y, int spanX, int spanY) {
774 addInScreen(child, container, screenId, x, y, spanX, spanY, false, false);
780 int spanX, int spanY) {
781 addInScreen(child, container, screenId, x, y, spanX, spanY, false, true);
785 void addInScreen(View child, long container, long screenId, int x, int y, int spanX, int spanY,
787 addInScreen(child, container, screenId, x, y, spanX, spanY, insert, false);
792 * the child are defined by x, y, spanX and spanY.
798 * @param spanX The number of cells spanned horizontally by the child
    [all...]
FolderInfo.java 116 + " cellX=" + cellX + " cellY=" + cellY + " spanX=" + spanX
Hotseat.java 197 fi.spanX = 1;
208 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 56 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 989 milliseconds

1 2