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

  /external/opencv3/modules/core/src/
precomp.hpp 154 inline Size getContinuousSize_( int flags, int cols, int rows, int widthScale )
156 int64 sz = (int64)cols * rows * widthScale;
158 (int)sz == sz ? Size((int)sz, 1) : Size(cols * widthScale, rows);
161 inline Size getContinuousSize( const Mat& m1, int widthScale=1 )
164 m1.cols, m1.rows, widthScale);
167 inline Size getContinuousSize( const Mat& m1, const Mat& m2, int widthScale=1 )
170 m1.cols, m1.rows, widthScale);
174 const Mat& m3, int widthScale=1 )
177 m1.cols, m1.rows, widthScale);
182 int widthScale=1
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
BitmapWorkerTask.java 170 float widthScale = 1f;
173 widthScale = (float) outputOptions.getWidth() / (float) bitmap.getWidth();
176 float scale = heightScale < widthScale ? heightScale : widthScale;
221 float widthScale = 1f;
225 widthScale = (float) bitmapOptions.outWidth / width;
229 float scale = heightScale > widthScale ? heightScale : widthScale;
DrawableLoader.java 206 int widthScale = 1;
209 widthScale = bitmapOptions.outWidth / width;
212 int scale = heightScale > widthScale ? heightScale : widthScale;
  /development/samples/training/threadsample/src/com/example/android/threadsample/
PhotoThumbnailFragment.java 158 int widthScale = localDisplayMetrics.widthPixels / pixelSize;
161 mColumnWidth = (localDisplayMetrics.widthPixels / widthScale);
  /frameworks/base/core/java/android/hardware/radio/
RadioMetadata.java 495 float widthScale = maxSizeF / bmp.getWidth();
497 float scale = Math.min(widthScale, heightScale);
  /packages/apps/Gallery/src/com/android/camera/
ImageViewTouchBase.java 269 float widthScale = Math.min(viewWidth / w, 3.0f);
271 float scale = Math.min(widthScale, heightScale);
  /packages/apps/Messaging/src/com/android/messaging/ui/
VideoThumbnailView.java 325 final float widthScale = Math.max(1, minimumWidth / (float) desiredWidth);
327 final float scale = Math.min(maxScale, Math.max(widthScale, heightScale));
  /frameworks/base/media/java/android/media/
MediaMetadata.java 796 float widthScale = maxSizeF / bmp.getWidth();
798 float scale = Math.min(widthScale, heightScale);
  /frameworks/support/media-compat/java/android/support/v4/media/
MediaMetadataCompat.java 853 float widthScale = maxSizeF / bmp.getWidth();
855 float scale = Math.min(widthScale, heightScale);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusheaders.h 303 Status SetWidthScale(REAL widthScale);
gdiplusimpl.h 735 __inline__ Status CustomLineCap::SetWidthScale(REAL widthScale)
738 nativeCustomLineCap, widthScale));
    [all...]
  /prebuilts/sdk/current/support/v13/
android-support-v13.jar 
  /prebuilts/sdk/current/support/v4/
android-support-v4.jar 

Completed in 699 milliseconds