Home
last modified time | relevance | path

Searched refs:minWidth (Results 1 – 8 of 8) sorted by relevance

/cts/tests/tests/media/src/android/media/cts/
DMediaCodecCapabilitiesTest.java515 int minWidth = vidCaps.getSupportedWidths().getLower(); in getVideoSizeForTest() local
516 int minHeight = vidCaps.getSupportedHeightsFor(minWidth).getLower(); in getVideoSizeForTest()
517 size = new Size(minWidth, minHeight); in getVideoSizeForTest()
674 int minWidth = vcaps.getSupportedWidths().getLower(); in createMinFormat() local
675 int minHeight = vcaps.getSupportedHeightsFor(minWidth).getLower(); in createMinFormat()
677 int minFrameRate = Math.max(vcaps.getSupportedFrameRatesFor(minWidth, minHeight) in createMinFormat()
679 format = MediaFormat.createVideoFormat(mime, minWidth, minHeight); in createMinFormat()
DMediaCodecTest.java2674 int minWidth = vcaps.getSupportedWidths().getLower(); in testPrependHeadersToSyncFrames() local
2675 int minHeight = vcaps.getSupportedHeightsFor(minWidth).getLower(); in testPrependHeadersToSyncFrames()
2678 minWidth, minHeight) .getLower().intValue(), 1); in testPrependHeadersToSyncFrames()
2679 format = MediaFormat.createVideoFormat(mime, minWidth, minHeight); in testPrependHeadersToSyncFrames()
/cts/tests/framework/base/windowmanager/src/android/server/wm/
DManifestLayoutTests.java120 final int minWidth = dpToPx(MIN_WIDTH_DP, mDisplay.getDpi()); in testMinimalSize() local
125 assertEquals("Min width is incorrect", minWidth, in testMinimalSize()
DPinnedStackTests.java277 final Size minSize = new Size(info.windowLayout.minWidth, info.windowLayout.minHeight); in testEnterPipWithMinimalSize()
/cts/tests/tests/appwidget/src/android/appwidget/cts/
DAppWidgetTestCase.java89 provider.minWidth); in verifyInstalledProviders()
138 provider.minWidth); in verifyInstalledProviders()
/cts/tests/tests/widget/src/android/widget/cts/
DProgressBarTest.java673 final int minWidth = 20; in testGetAndSetMinWidth() local
674 mProgressBar.setMinWidth(minWidth); in testGetAndSetMinWidth()
675 assertEquals(minWidth, mProgressBar.getMinWidth()); in testGetAndSetMinWidth()
DWidgetAttributeTest.kt134 attributeMapProgressBar[android.R.attr.minWidth]!!.toInt()) in testGetAttributeSourceResourceMap()
/cts/tests/framework/base/windowmanager/util/src/android/server/wm/
DWindowManagerState.java1322 mMinWidth = proto.minWidth; in ActivityTask()