Home
last modified time | relevance | path

Searched refs:width1 (Results 1 – 3 of 3) sorted by relevance

/aosp12/frameworks/base/core/java/com/android/internal/policy/
H A DTaskResizingAlgorithm.java108 int width1; in resizeDrag() local
114 width1 = Math.max(minVisibleWidth, Math.min(maxVisibleSize.x, width)); in resizeDrag()
115 height1 = Math.min(height, Math.round((float) width1 / MIN_ASPECT)); in resizeDrag()
119 width1 = Math.max(minVisibleWidth, in resizeDrag()
133 width1 = Math.max(minVisibleWidth, Math.min(maxVisibleSize.x, width)); in resizeDrag()
134 height1 = Math.max(height, Math.round((float) width1 * MIN_ASPECT)); in resizeDrag()
138 width1 = Math.max(minVisibleWidth, in resizeDrag()
155 if (grows == (width1 * height1 > width2 * height2)) { in resizeDrag()
156 width = width1; in resizeDrag()
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/hotspot2/anqp/
H A DIconInfoTest.java109 int width1 = 1; in testHashCode() local
121 IconInfo info1 = new IconInfo(width1, height1, language1, iconType1, fileName1); in testHashCode()
123 IconInfo info1Dup = new IconInfo(width1, height1, language1, iconType1, fileName1); in testHashCode()
/aosp12/frameworks/av/media/extractors/tests/
H A DExtractorUnitTest.cpp1113 int32_t width1, height1; in TEST_P() local
1116 ASSERT_TRUE(AMediaFormat_getInt32(extractorFormat[1], AMEDIAFORMAT_KEY_WIDTH, &width1)); in TEST_P()
1118 ASSERT_EQ(width0, width1) << "Mismatch between extractor's width"; in TEST_P()