Home
last modified time | relevance | path

Searched refs:heightPx (Results 1 – 6 of 6) sorted by relevance

/external/perfetto/ui/src/frontend/
Dcheckerboard.ts23 heightPx: number,
29 ctx.fillRect(leftPx, 0, widthPx, heightPx);
39 heightPx / 2,
49 heightPx: number,
56 checkerboard(ctx, heightPx, startPx, endPx);
62 checkerboard(ctx, heightPx, startPx, leftPx);
67 checkerboard(ctx, heightPx, rightPx, endPx);
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowDisplayManager.java51 int heightPx = (int) (configuration.screenHeightDp * displayMetrics.density); in createDisplayInfo() local
59 displayInfo.appHeight = heightPx; in createDisplayInfo()
62 displayInfo.logicalHeight = heightPx; in createDisplayInfo()
70 new Display.Mode(0, widthPx, heightPx, 60) in createDisplayInfo()
DShadowDisplay.java401 int heightPx = (int) (configuration.screenHeightDp * displayMetrics.density); in configureForJBOnly() local
406 height = heightPx; in configureForJBOnly()
408 realHeight = heightPx; in configureForJBOnly()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/android/
DBootstrap.java58 int heightPx = (int) (configuration.screenHeightDp * displayMetrics.density); in fixJellyBean() local
60 displayMetrics.heightPixels = displayMetrics.noncompatHeightPixels = heightPx; in fixJellyBean()
/external/autotest/frontend/client/src/autotest/common/table/
DTableRenderer.java49 if (cell.heightPx != null) { in renderRowsAndAppend()
50 divStyle += SIZE_PREFIX + "height: " + cell.heightPx + "px; "; in renderRowsAndAppend()
/external/autotest/frontend/client/src/autotest/common/spreadsheet/
DSpreadsheet.java85 public Integer widthPx, heightPx; field in Spreadsheet.CellInfo
375 getCellInfo(to, row, lastColumn).heightPx = height - 2 * CELL_PADDING_PX; in matchRowHeights()