HomeSort by relevance Sort by last modified time
    Searched refs:heightScale (Results 1 - 10 of 10) sorted by null

  /packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/
BitmapUtils.java 41 float heightScale = 1f;
43 heightScale = (float) height / bm.getHeight();
49 float scale = heightScale > widthScale ? heightScale : widthScale;
DrawableLoader.java 197 int heightScale = 1;
200 heightScale = bitmapOptions.outHeight / height;
209 int scale = heightScale > widthScale ? heightScale : widthScale;
BitmapWorkerTask.java 170 float heightScale = (float) bitmapOptions.outHeight / options.getHeight();
173 float scale = heightScale < widthScale ? heightScale : widthScale;
  /packages/services/Car/tests/InstrumentClusterRendererSample/src/com/android/car/cluster/sample/
BitmapUtils.java 58 float heightScale = (float) height / bm.getHeight();
61 float scale = heightScale > widthScale ? heightScale : widthScale;
  /frameworks/base/core/java/android/hardware/radio/
RadioMetadata.java 496 float heightScale = maxSizeF / bmp.getHeight();
497 float scale = Math.min(widthScale, heightScale);
  /packages/apps/Gallery/src/com/android/camera/
ImageViewTouchBase.java 270 float heightScale = Math.min(viewHeight / h, 3.0f);
271 float scale = Math.min(widthScale, heightScale);
  /packages/apps/Messaging/src/com/android/messaging/ui/
VideoThumbnailView.java 326 final float heightScale = Math.max(1, minimumHeight / (float) desiredHeight);
327 final float scale = Math.min(maxScale, Math.max(widthScale, heightScale));
  /frameworks/base/media/java/android/media/
MediaMetadata.java     [all...]
  /frameworks/support/media-compat/java/android/support/v4/media/
MediaMetadataCompat.java     [all...]
  /prebuilts/sdk/current/support/media-compat/
android-support-media-compat.jar 

Completed in 250 milliseconds