OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:UNCONSTRAINED
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Gallery/src/com/android/camera/gallery/
IImage.java
32
static final int
UNCONSTRAINED
= -1;
/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
) {
/frameworks/base/media/java/android/media/
ThumbnailUtils.java
52
private static final int
UNCONSTRAINED
= -1;
246
* Both size and minSideLength can be passed in as IImage.
UNCONSTRAINED
,
249
* generates a smaller bitmap, unless minSideLength = IImage.
UNCONSTRAINED
.
279
int lowerBound = (maxNumOfPixels ==
UNCONSTRAINED
) ? 1 :
281
int upperBound = (minSideLength ==
UNCONSTRAINED
) ? 128 :
290
if ((maxNumOfPixels ==
UNCONSTRAINED
) &&
291
(minSideLength ==
UNCONSTRAINED
)) {
293
} else if (minSideLength ==
UNCONSTRAINED
) {
Completed in 344 milliseconds