HomeSort by relevance Sort by last modified time
    Searched defs:cellHeight (Results 1 - 25 of 31) sorted by null

1 2

  /development/samples/ApiDemos/src/com/example/android/apis/animation/
FixedGridLayout.java 77 int cellHeight = mCellHeight;
93 int top = y + ((cellHeight-h)/2);
100 y += cellHeight;
  /development/samples/FixedGridLayout/src/com/example/android/fixedgridlayout/
FixedGridLayout.java 88 int cellHeight = mCellHeight;
104 int top = y + ((cellHeight-h)/2);
111 y += cellHeight;
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
FixedTableModel.java 25 private float cellHeight;
26 protected FixedTableModel(float cellWidth, float cellHeight, TableOrder order) {
29 setCellHeight(cellHeight);
46 return cellHeight;
49 public void setCellHeight(float cellHeight) {
50 this.cellHeight = cellHeight;
DynamicTableModel.java 39 //private float cellHeight;
48 private Float cellHeight;
69 //this.cellHeight = cellHeight;
129 //elementSizeInPix = cellHeight;
175 return cellHeight;
178 public void setCellHeight(Float cellHeight) {
179 this.cellHeight = cellHeight;
  /packages/apps/Settings/src/com/android/settings/dashboard/
DashboardContainerView.java 51 int cellHeight = 0;
70 if (cellHeight <= 0) {
71 cellHeight = v.getMeasuredHeight();
74 lp.height = cellHeight;
80 final int newHeight = (int) ((mNumRows * cellHeight) + ((mNumRows - 1) * mCellGapY)) +
  /external/deqp/framework/randomshaders/
rsgProgramExecutor.cpp 188 inline tcu::IVec4 computeVertexIndices (float cellWidth, float cellHeight, int gridVtxWidth, int gridVtxHeight, int x, int y)
192 int y0 = (int)deFloatFloor((float)y / cellHeight);
196 inline tcu::Vec2 computeGridCellWeights (float cellWidth, float cellHeight, int x, int y)
199 float gy = (y + 0.5f) / cellHeight;
306 float cellHeight = (float)height / (float)m_gridHeight;
326 tcu::IVec4 vtxIndices = computeVertexIndices(cellWidth, cellHeight, gridVtxWidth, gridVtxHeight, x, y);
327 tcu::Vec2 weights = computeGridCellWeights(cellWidth, cellHeight, x, y);
  /external/deqp/modules/gles2/functional/
es2fStencilTests.cpp 315 int cellHeight = height/gridSize;
318 cells.push_back(IVec4(x*cellWidth, y*cellHeight, cellWidth, cellHeight));
es2fTextureMipmapTests.cpp 273 int cellHeight = viewport.height / gridHeight;
315 const int curY = cellHeight*gridY;
317 const int curH = gridY+1 == gridHeight ? (viewport.height-curY) : cellHeight;
367 const int curY = cellHeight*gridY;
369 const int curH = gridY+1 == gridHeight ? (viewport.height-curY) : cellHeight;
    [all...]
  /external/deqp/modules/gles3/functional/
es3fStencilTests.cpp 318 int cellHeight = height/gridSize;
321 cells.push_back(IVec4(x*cellWidth, y*cellHeight, cellWidth, cellHeight));
es3fTextureMipmapTests.cpp 317 int cellHeight = viewport.height / gridHeight;
359 const int curY = cellHeight*gridY;
361 const int curH = gridY+1 == gridHeight ? (viewport.height-curY) : cellHeight;
411 const int curY = cellHeight*gridY;
413 const int curH = gridY+1 == gridHeight ? (viewport.height-curY) : cellHeight;
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
ShortcutAndWidgetContainer.java 51 public void setCellDimensions(int cellWidth, int cellHeight, int widthGap, int heightGap,
54 mCellHeight = cellHeight;
116 final int cellHeight = mCellHeight;
119 lp.setup(cellWidth, cellHeight, mWidthGap, mHeightGap, invertLayoutHorizontally(), mCountX);
AppWidgetResizeFrame.java 357 int cellHeight = landMetrics.top;
361 int landHeight = (int) ((spanY * cellHeight + (spanY - 1) * heightGap) / density);
365 cellHeight = portMetrics.top;
369 int portHeight = (int) ((spanY * cellHeight + (spanY - 1) * heightGap) / density);
AppsCustomizePagedView.java     [all...]
CellLayout.java 307 int cellHeight = r.getDimensionPixelSize(R.dimen.workspace_cell_height);
311 return minGap * (numCells - 1) + cellHeight * numCells;
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
ShortcutAndWidgetContainer.java 58 public void setCellDimensions(int cellWidth, int cellHeight, int widthGap, int heightGap,
61 mCellHeight = cellHeight;
145 final int cellHeight = mCellHeight;
148 lp.setup(cellWidth, cellHeight, mWidthGap, mHeightGap, invertLayoutHorizontally(),
AppWidgetResizeFrame.java 353 int cellHeight = landMetrics.top;
357 int landHeight = (int) ((spanY * cellHeight + (spanY - 1) * heightGap) / density);
361 cellHeight = portMetrics.top;
365 int portHeight = (int) ((spanY * cellHeight + (spanY - 1) * heightGap) / density);
  /development/apps/WidgetPreview/src/com/android/widgetpreview/
WidgetPreviewActivity.java 202 int cellHeight = resources.getDimensionPixelSize(R.dimen.workspace_cell_height);
209 int smallerSize = Math.min(cellWidth, cellHeight);
  /external/deqp/modules/gles2/accuracy/
es2aTextureMipmapTests.cpp 276 int cellHeight = viewport.height / gridHeight;
322 int curY = cellHeight*gridY;
324 int curH = gridY+1 == gridHeight ? (viewport.height-curY) : cellHeight;
  /external/deqp/modules/gles3/accuracy/
es3aTextureMipmapTests.cpp 269 int cellHeight = viewport.height / gridHeight;
315 int curY = cellHeight*gridY;
317 int curH = gridY+1 == gridHeight ? (viewport.height-curY) : cellHeight;
  /packages/apps/Messaging/src/com/android/messaging/ui/
MultiAttachmentLayout.java 99 public int getHeightMeasureSpec(final int cellHeight, final int padding) {
100 return MeasureSpec.makeMeasureSpec((endY - startY + 1) * cellHeight - padding * 2,
303 final int cellHeight = height / GRID_HEIGHT;
311 imageTile.getHeightMeasureSpec(cellHeight, padding));
326 imageTile.getHeightMeasureSpec(cellHeight, padding));
336 final int cellHeight = getMeasuredHeight() / GRID_HEIGHT;
345 final int tileTop = imageTile.startY * cellHeight;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridDropHandler.java 207 int cellHeight = topDistance + bottomDistance;
223 && dragBounds != null && dragBounds.h < cellHeight - 10) {
227 int centerDistance = Math.abs(cellHeight / 2 - topDistance);
    [all...]
GridModel.java 694 int cellHeight = layoutBounds.h / CELL_COUNT;
698 ys[i] = i * cellHeight;
    [all...]
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
MonthView.java 777 final int cellHeight = mRowHeight;
783 final int y = (offsetY + (row * cellHeight));
785 rect.set(x, y, (x + cellWidth), (y + cellHeight));
  /frameworks/base/core/java/android/widget/
GridLayout.java     [all...]
  /frameworks/support/v7/gridlayout/src/android/support/v7/widget/
GridLayout.java     [all...]

Completed in 683 milliseconds

1 2