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.java234 final int originalWidth; in ScreenRotationAnimation() local
240 originalWidth = displayContent.mBaseDisplayWidth; in ScreenRotationAnimation()
244 originalWidth = displayInfo.logicalWidth; in ScreenRotationAnimation()
250 mHeight = originalWidth; in ScreenRotationAnimation()
252 mWidth = originalWidth; in ScreenRotationAnimation()
257 mOriginalWidth = originalWidth; 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.java221 final int originalWidth = mSecondaryDisplay.mBaseDisplayWidth; in testDefaultToOriginalMetrics() local
228 assertEquals(originalWidth, mSecondaryDisplay.mBaseDisplayWidth); in testDefaultToOriginalMetrics()