Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/views/
DClipIconView.java290 final int originalWidth = lp.width; in setIcon() local
293 mFinalDrawableBounds.set(0, 0, originalWidth, originalHeight); in setIcon()
301 mStartRevealRect.set(0, 0, originalWidth, originalHeight); in setIcon()
319 (float) lp.width / originalWidth); in setIcon()
323 mOutline.set(0, 0, originalWidth, originalHeight); in setIcon()
DFloatingIconView.java326 final int originalWidth = lp.width; in setIcon() local
328 mFinalDrawableBounds.set(0, 0, originalWidth, originalHeight); in setIcon()
/packages/apps/Camera2/src/com/android/camera/processing/imagebackend/
DTaskCompressImageToJpeg.java434 private Size getImageSizeForOrientation(int originalWidth, int originalHeight, in getImageSizeForOrientation() argument
438 return new Size(originalWidth, originalHeight); in getImageSizeForOrientation()
441 return new Size(originalHeight, originalWidth); in getImageSizeForOrientation()
444 return new Size(originalWidth, originalHeight); in getImageSizeForOrientation()
/packages/apps/Settings/src/com/android/settings/biometrics/fingerprint/
DFingerprintLocationAnimationVideoView.java51 int originalWidth = MeasureSpec.getSize(widthMeasureSpec); in onMeasure() local
52 int height = Math.round(mAspect * originalWidth); in onMeasure()
/packages/apps/Camera2/src/com/android/camera/
DPhotoModule.java827 int originalWidth = original.getWidth(); in cropJpegDataToAspectRatio() local
832 if (originalWidth > originalHeight) { in cropJpegDataToAspectRatio()
833 newHeight = (int) (originalWidth / targetAspectRatio); in cropJpegDataToAspectRatio()
834 newWidth = originalWidth; in cropJpegDataToAspectRatio()
839 int xOffset = (originalWidth - newWidth)/2; in cropJpegDataToAspectRatio()
/packages/apps/Camera2/src/com/android/camera/one/v2/
DOneCameraZslImpl.java993 private Size getImageSizeForOrientation(int originalWidth, int originalHeight, in getImageSizeForOrientation() argument
996 return new Size(originalWidth, originalHeight); in getImageSizeForOrientation()
998 return new Size(originalHeight, originalWidth); in getImageSizeForOrientation()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
DGeometryMathUtils.java373 float originalWidth, in getOriginalToScreen() argument
380 Matrix m = getCropSelectionToScreenMatrix(null, holder, (int) originalWidth, in getOriginalToScreen()