Home
last modified time | relevance | path

Searched refs:UNCONSTRAINED (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
DBitmapUtils.java35 public static final int UNCONSTRAINED = -1; field in BitmapUtils
70 if (maxNumOfPixels == UNCONSTRAINED in computeInitialSampleSize()
71 && minSideLength == UNCONSTRAINED) return 1; in computeInitialSampleSize()
73 int lowerBound = (maxNumOfPixels == UNCONSTRAINED) ? 1 : in computeInitialSampleSize()
76 if (minSideLength == UNCONSTRAINED) { in computeInitialSampleSize()
/packages/apps/Gallery/src/com/android/camera/
DUtil.java125 int lowerBound = (maxNumOfPixels == IImage.UNCONSTRAINED) ? 1 : in computeInitialSampleSize()
127 int upperBound = (minSideLength == IImage.UNCONSTRAINED) ? 128 : in computeInitialSampleSize()
136 if ((maxNumOfPixels == IImage.UNCONSTRAINED) && in computeInitialSampleSize()
137 (minSideLength == IImage.UNCONSTRAINED)) { in computeInitialSampleSize()
139 } else if (minSideLength == IImage.UNCONSTRAINED) { in computeInitialSampleSize()
DCropImage.java186 ? mImage.fullSizeBitmap(IImage.UNCONSTRAINED, in startFaceDetection()
DImageGallery.java322 IImage.UNCONSTRAINED, 100 * 1024);
/packages/apps/Gallery/src/com/android/camera/gallery/
DIImage.java32 static final int UNCONSTRAINED = -1; field