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
34
public static final int
UNCONSTRAINED
= -1;
48
* Both size and minSideLength can be passed in as
UNCONSTRAINED
,
51
* generates a smaller bitmap, unless minSideLength =
UNCONSTRAINED
.
70
if (maxNumOfPixels ==
UNCONSTRAINED
71
&& minSideLength ==
UNCONSTRAINED
) return 1;
73
int lowerBound = (maxNumOfPixels ==
UNCONSTRAINED
) ? 1 :
76
if (minSideLength ==
UNCONSTRAINED
) {
/frameworks/base/media/java/android/media/
ThumbnailUtils.java
52
private static final int
UNCONSTRAINED
= -1;
235
* Both size and minSideLength can be passed in as IImage.
UNCONSTRAINED
,
238
* generates a smaller bitmap, unless minSideLength = IImage.
UNCONSTRAINED
.
268
int lowerBound = (maxNumOfPixels ==
UNCONSTRAINED
) ? 1 :
270
int upperBound = (minSideLength ==
UNCONSTRAINED
) ? 128 :
279
if ((maxNumOfPixels ==
UNCONSTRAINED
) &&
280
(minSideLength ==
UNCONSTRAINED
)) {
282
} else if (minSideLength ==
UNCONSTRAINED
) {
Completed in 258 milliseconds