Home
last modified time | relevance | path

Searched refs:mFullWidth (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Settings/tests/unit/src/com/android/settings/display/
DScreenResolutionFragmentTest.java42 private int mFullWidth; field in ScreenResolutionFragmentTest
51 mFullWidth = mController.getFullWidth(); in setup()
68 Display.Mode mode = new Display.Mode(0, mFullWidth, 0, 0); in getDefaultKey_fullResolution()
73 assertThat(mFragment.getDefaultKey()).isEqualTo(mFragment.getKeyForResolution(mFullWidth)); in getDefaultKey_fullResolution()
93 mFragment.setDefaultKey(mFragment.getKeyForResolution(mFullWidth)); in setDefaultKey_fullResolution()
95 verify(mFragment).setDisplayMode(mFullWidth); in setDefaultKey_fullResolution()
DScreenResolutionControllerTest.java41 private int mFullWidth; field in ScreenResolutionControllerTest
49 mFullWidth = mController.getFullWidth(); in setUp()
56 Display.Mode modeB = new Display.Mode(0, mFullWidth, 0, 0); in getAvailabilityStatus_hasFhdAndQhdModes_returnAvailable()
83 int width = mFullWidth; in updateState_FullResolution_shouldSetSummaryToFullResolution()
/packages/apps/Settings/src/com/android/settings/display/
DScreenResolutionController.java45 private int mFullWidth = 0; field in ScreenResolutionController
80 mFullWidth = resolutionList.get(FULLRESOLUTION_IDX).x; in initSupportedResolutionData()
100 } else if (width == mFullWidth) { in getSummary()
121 return this.mFullWidth; in getFullWidth()
DScreenResolutionFragment.java70 private int mFullWidth; field in ScreenResolutionFragment
88 mFullWidth = controller.getFullWidth(); in onAttach()
89 Log.i(TAG, "mHighWidth:" + mHighWidth + "mFullWidth:" + mFullWidth); in onAttach()
93 mFullWidth + " x " + controller.getFullHeight() in onAttach()
197 : width == mFullWidth in getKeyForResolution()
208 ? mFullWidth : -1; in getWidthForResoluitonKey()