Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/anqp/
DIconInfoTest.java107 int width1 = 1; in testHashCode() local
119 IconInfo info1 = new IconInfo(width1, height1, language1, iconType1, fileName1); in testHashCode()
121 IconInfo info1Dup = new IconInfo(width1, height1, language1, iconType1, fileName1); in testHashCode()
/frameworks/base/services/core/java/com/android/server/wm/
DTaskPositioner.java519 int width1; in resizeDrag() local
525 width1 = Math.max(mMinVisibleWidth, Math.min(mMaxVisibleSize.x, width)); in resizeDrag()
526 height1 = Math.min(height, Math.round((float)width1 / MIN_ASPECT)); in resizeDrag()
530 width1 = Math.max(mMinVisibleWidth, in resizeDrag()
544 width1 = Math.max(mMinVisibleWidth, Math.min(mMaxVisibleSize.x, width)); in resizeDrag()
545 height1 = Math.max(height, Math.round((float)width1 * MIN_ASPECT)); in resizeDrag()
549 width1 = Math.max(mMinVisibleWidth, in resizeDrag()
566 if (grows == (width1 * height1 > width2 * height2)) { in resizeDrag()
567 width = width1; in resizeDrag()
/frameworks/av/media/extractors/tests/
DExtractorUnitTest.cpp1066 int32_t width1, height1; in TEST_P() local
1069 ASSERT_TRUE(AMediaFormat_getInt32(extractorFormat[1], AMEDIAFORMAT_KEY_WIDTH, &width1)); in TEST_P()
1071 ASSERT_EQ(width0, width1) << "Mismatch between extractor's width"; in TEST_P()