Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/policy/
DTaskResizingAlgorithm.java110 int height1; in resizeDrag() local
115 height1 = Math.min(height, Math.round((float) width1 / MIN_ASPECT)); in resizeDrag()
116 if (height1 < minVisibleHeight) { in resizeDrag()
118 height1 = minVisibleHeight; in resizeDrag()
120 Math.min(maxVisibleSize.x, Math.round((float) height1 * MIN_ASPECT))); in resizeDrag()
134 height1 = Math.max(height, Math.round((float) width1 * MIN_ASPECT)); in resizeDrag()
135 if (height1 < minVisibleHeight) { in resizeDrag()
137 height1 = minVisibleHeight; in resizeDrag()
139 Math.min(maxVisibleSize.x, Math.round((float) height1 / MIN_ASPECT))); in resizeDrag()
155 if (grows == (width1 * height1 > width2 * height2)) { in resizeDrag()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/events/
DSystemEventChipAnimationController.kt169 val height1 = ValueAnimator.ofInt(chipBounds.height(), keyFrame1Height).apply { in createMoveOutAnimationForDot() constant
205 animSet.playTogether(width1, width2, height1, height2, moveOut) in createMoveOutAnimationForDot()
/frameworks/av/media/module/extractors/tests/
DExtractorUnitTest.cpp1113 int32_t width1, height1; in TEST_P() local
1117 ASSERT_TRUE(AMediaFormat_getInt32(extractorFormat[1], AMEDIAFORMAT_KEY_HEIGHT, &height1)); in TEST_P()
1119 ASSERT_EQ(height0, height1) << "Mismatch between extractor's height"; in TEST_P()