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

  /packages/apps/Gallery/src/com/android/camera/gallery/
IImage.java 32 static final int UNCONSTRAINED = -1;
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/common/
BitmapUtils.java 36 public static final int UNCONSTRAINED = -1;
49 * Both size and minSideLength can be passed in as UNCONSTRAINED,
52 * generates a smaller bitmap, unless minSideLength = UNCONSTRAINED.
71 if (maxNumOfPixels == UNCONSTRAINED
72 && minSideLength == UNCONSTRAINED) return 1;
74 int lowerBound = (maxNumOfPixels == UNCONSTRAINED) ? 1 :
77 if (minSideLength == UNCONSTRAINED) {
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
BitmapUtils.java 36 public static final int UNCONSTRAINED = -1;
49 * Both size and minSideLength can be passed in as UNCONSTRAINED,
52 * generates a smaller bitmap, unless minSideLength = UNCONSTRAINED.
71 if (maxNumOfPixels == UNCONSTRAINED
72 && minSideLength == UNCONSTRAINED) return 1;
74 int lowerBound = (maxNumOfPixels == UNCONSTRAINED) ? 1 :
77 if (minSideLength == UNCONSTRAINED) {
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/common/
BitmapUtils.java 36 public static final int UNCONSTRAINED = -1;
49 * Both size and minSideLength can be passed in as UNCONSTRAINED,
52 * generates a smaller bitmap, unless minSideLength = UNCONSTRAINED.
71 if (maxNumOfPixels == UNCONSTRAINED
72 && minSideLength == UNCONSTRAINED) return 1;
74 int lowerBound = (maxNumOfPixels == UNCONSTRAINED) ? 1 :
77 if (minSideLength == UNCONSTRAINED) {
  /frameworks/base/media/java/android/media/
ThumbnailUtils.java 46 private static final int UNCONSTRAINED = -1;
240 * Both size and minSideLength can be passed in as IImage.UNCONSTRAINED,
243 * generates a smaller bitmap, unless minSideLength = IImage.UNCONSTRAINED.
273 int lowerBound = (maxNumOfPixels == UNCONSTRAINED) ? 1 :
275 int upperBound = (minSideLength == UNCONSTRAINED) ? 128 :
284 if ((maxNumOfPixels == UNCONSTRAINED) &&
285 (minSideLength == UNCONSTRAINED)) {
287 } else if (minSideLength == UNCONSTRAINED) {
  /external/chromium_org/third_party/android_platform/webview/
frameworks.jar 

Completed in 762 milliseconds