Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/util/
DImageUtils.java143 int originalWidth = drawable.getIntrinsicWidth(); in buildScaledBitmap() local
146 if ((originalWidth <= maxWidth) && (originalHeight <= maxHeight) && in buildScaledBitmap()
150 if (originalHeight <= 0 || originalWidth <= 0) { in buildScaledBitmap()
156 float ratio = Math.min((float) maxWidth / (float) originalWidth, in buildScaledBitmap()
159 int scaledWidth = (int) (ratio * originalWidth); in buildScaledBitmap()
/frameworks/base/services/core/java/com/android/server/wm/
DScreenRotationAnimation.java152 final int originalWidth; in ScreenRotationAnimation() local
157 originalWidth = displayContent.mBaseDisplayWidth; in ScreenRotationAnimation()
161 originalWidth = displayInfo.logicalWidth; in ScreenRotationAnimation()
167 mHeight = originalWidth; in ScreenRotationAnimation()
169 mWidth = originalWidth; in ScreenRotationAnimation()
180 mOriginalWidth = flipped ? originalHeight : originalWidth; in ScreenRotationAnimation()
181 mOriginalHeight = flipped ? originalWidth : originalHeight; in ScreenRotationAnimation()
/frameworks/base/core/tests/coretests/src/android/text/
DTextLineTest.java52 final float originalWidth = tl.metrics(null); in stretchesToFullWidth() local
53 final float expandedWidth = 2 * originalWidth; in stretchesToFullWidth()
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DDisplayWindowSettingsTests.java225 final int originalWidth = mSecondaryDisplay.mBaseDisplayWidth; in testDefaultToOriginalMetrics() local
232 assertEquals(originalWidth, mSecondaryDisplay.mBaseDisplayWidth); in testDefaultToOriginalMetrics()