Searched refs:cellWidth (Results 1 - 22 of 22) sorted by relevance

/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
H A DFixedTableModel.java24 private float cellWidth; field in class:FixedTableModel
26 protected FixedTableModel(float cellWidth, float cellHeight, TableOrder order) { argument
28 setCellWidth(cellWidth);
38 return cellWidth;
41 public void setCellWidth(float cellWidth) { argument
42 this.cellWidth = cellWidth;
H A DDynamicTableModel.java38 //private float cellWidth;
47 private Float cellWidth; field in class:DynamicTableModel
66 //this.cellWidth = cellWidth;
84 cellWidth = colVal.floatValue();
134 //elementSizeInPix = cellWidth;
166 /* public void setCellWidth(Float cellWidth) {
167 this.cellWidth = cellWidth;
171 return cellWidth;
[all...]
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/texturepacker/
H A DGridPacker.java38 int cellWidth = 0, cellHeight = 0;
41 cellWidth = Math.max(cellWidth, rect.width);
44 cellWidth += settings.paddingX;
51 Page result = packPage(inputRects, cellWidth, cellHeight);
57 private Page packPage (Array<Rect> inputRects, int cellWidth, int cellHeight) { argument
68 if (x + cellWidth > maxWidth) {
79 x += cellWidth;
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/calendar/
H A DCalendarPanel.java228 double cellWidth = (double)(d.width - 1) / daysInWeek;
236 int width = (int)(cellPos.x*cellWidth); // Width of unshaded area
252 width = (int)((cellPos.x+1)*cellWidth); // Width of shaded area
270 int x = (int)(i * cellWidth);
298 cellx = (int)((col) * cellWidth);
300 cellx = (int)((daysInWeek - col - 1) * cellWidth);
316 x = cellx + (int)cellWidth - XINSET - fm.stringWidth(dayNum);
335 x = cellx + (int)cellWidth - XINSET - fm.stringWidth(month);
/external/deqp/framework/randomshaders/
H A DrsgProgramExecutor.cpp188 inline tcu::IVec4 computeVertexIndices (float cellWidth, float cellHeight, int gridVtxWidth, int gridVtxHeight, int x, int y) argument
191 int x0 = (int)deFloatFloor((float)x / cellWidth);
196 inline tcu::Vec2 computeGridCellWeights (float cellWidth, float cellHeight, int x, int y) argument
198 float gx = ((float)x + 0.5f) / cellWidth;
305 float cellWidth = (float)width / (float)m_gridWidth; local
326 tcu::IVec4 vtxIndices = computeVertexIndices(cellWidth, cellHeight, gridVtxWidth, gridVtxHeight, x, y);
327 tcu::Vec2 weights = computeGridCellWeights(cellWidth, cellHeight, x, y);
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/holiday/
H A DHolidayCalendarDemo.java616 double cellWidth = (double)(d.width - 1) / daysInWeek;
624 int width = (int)(cellPos.x*cellWidth); // Width of unshaded area
635 width = (int)((cellPos.x+1)*cellWidth); // Width of shaded area
648 int x = (int)(i * cellWidth);
666 int x = (int)((cellPos.x + 1) * cellWidth);
682 x = (int)((cellPos.x) * cellWidth);
693 DemoTextBox box = new DemoTextBox(g, info.name, (int)(cellWidth - INSET));
/external/deqp/modules/gles3/functional/
H A Des3fTextureMipmapTests.cpp316 int cellWidth = viewport.width / gridWidth; local
358 const int curX = cellWidth*gridX;
360 const int curW = gridX+1 == gridWidth ? (viewport.width-curX) : cellWidth;
410 const int curX = cellWidth*gridX;
412 const int curW = gridX+1 == gridWidth ? (viewport.width-curX) : cellWidth;
1261 const int cellWidth = viewport.width / gridWidth; local
1303 const int curX = cellWidth*gridX;
1305 const int curW = gridX+1 == gridWidth ? (viewport.width-curX) : cellWidth;
1357 const int curX = cellWidth*gridX;
1359 const int curW = gridX+1 == gridWidth ? (viewport.width-curX) : cellWidth;
1511 const int cellWidth = viewport.width / gridWidth; local
2134 const int cellWidth = viewport.width / gridWidth; local
[all...]
H A Des3fStencilTests.cpp317 int cellWidth = width/gridSize; local
321 cells.push_back(IVec4(x*cellWidth, y*cellHeight, cellWidth, cellHeight));
/external/deqp/modules/gles2/functional/
H A Des2fStencilTests.cpp314 int cellWidth = width/gridSize; local
318 cells.push_back(IVec4(x*cellWidth, y*cellHeight, cellWidth, cellHeight));
H A Des2fTextureMipmapTests.cpp272 int cellWidth = viewport.width / gridWidth; local
314 const int curX = cellWidth*gridX;
316 const int curW = gridX+1 == gridWidth ? (viewport.width-curX) : cellWidth;
366 const int curX = cellWidth*gridX;
368 const int curW = gridX+1 == gridWidth ? (viewport.width-curX) : cellWidth;
/external/deqp/modules/gles2/accuracy/
H A Des2aTextureMipmapTests.cpp275 int cellWidth = viewport.width / gridWidth; local
321 int curX = cellWidth*gridX;
323 int curW = gridX+1 == gridWidth ? (viewport.width-curX) : cellWidth;
/external/deqp/modules/gles3/accuracy/
H A Des3aTextureMipmapTests.cpp268 int cellWidth = viewport.width / gridWidth; local
314 int curX = cellWidth*gridX;
316 int curW = gridX+1 == gridWidth ? (viewport.width-curX) : cellWidth;
/external/opencv3/modules/imgproc/src/
H A Dimgwarp.cpp2679 double cellWidth = std::min(scale, ssize - fsx1); local
2691 tab[k++].alpha = (float)((sx1 - fsx1) / cellWidth);
2699 tab[k++].alpha = float(1.0 / cellWidth);
2707 tab[k++].alpha = (float)(std::min(std::min(fsx2 - sx2, 1.), cellWidth) / cellWidth);
2852 double cellWidth = std::min(scale, ssize - fsx1);
2862 alpha_tab[k++] = (float)((sx1 - fsx1) / cellWidth);
2868 alpha_tab[k++] = float(1.0 / cellWidth);
2874 alpha_tab[k++] = (float)(std::min(std::min(fsx2 - sx2, 1.), cellWidth) / cellWidth);
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 402 milliseconds