Home
last modified time | relevance | path

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

/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()