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

  /packages/apps/Camera/src/com/android/camera/
PreviewFrameLayout.java 100 int shortSide = (widthLonger ? previewHeight : previewWidth);
101 if (longSide > shortSide * mAspectRatio) {
102 longSide = (int) ((double) shortSide * mAspectRatio);
104 shortSide = (int) ((double) longSide / mAspectRatio);
108 previewHeight = shortSide;
110 previewWidth = shortSide;
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoSource.java 129 public Bitmap next(BitmapFactory.Options options, int longSide, int shortSide) {
130 log(TAG, "decoding a picasa resource to " + longSide + ", " + shortSide);
143 image = load(imageData, options, longSide, shortSide);
153 options, longSide, shortSide);
159 public Bitmap load(ImageData data, BitmapFactory.Options options, int longSide, int shortSide) {
160 log(TAG, "decoding photo resource to " + longSide + ", " + shortSide);
177 (float) shortSide / (float) rawShortSide);
179 (float) shortSide / (float) rawShortSide);
204 (float) shortSide / (float) rawShortSide);
284 int longSide, int shortSide) {
    [all...]
  /development/perftests/panorama/feature_mos/src/mosaic/
Blend.cpp 310 int shortSide = min(Mwidth, Mheight);
311 if (shortSide > height * heightMultiplier) {
    [all...]
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Blend.cpp 323 int shortSide = min(Mwidth, Mheight);
324 if (shortSide > height * heightMultiplier) {
    [all...]
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Blend.cpp 323 int shortSide = min(Mwidth, Mheight);
324 if (shortSide > height * heightMultiplier) {
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
GlobalScreenshot.java 139 final int shortSide = mImageWidth < mImageHeight ? mImageWidth : mImageHeight;

Completed in 284 milliseconds