Searched defs:maxPixels (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/media/java/android/media/
H A DThumbnailUtils.java89 int maxPixels = wantMini
97 createThumbnailFromEXIF(filePath, targetSize, maxPixels, sizedThumbnailBitmap);
115 options, targetSize, maxPixels);
474 int maxPixels, SizedThumbnailBitmap sizedThumbBitmap) {
495 exifOptions.inSampleSize = computeSampleSize(exifOptions, targetSize, maxPixels);
502 fullOptions.inSampleSize = computeSampleSize(fullOptions, targetSize, maxPixels);
473 createThumbnailFromEXIF(String filePath, int targetSize, int maxPixels, SizedThumbnailBitmap sizedThumbBitmap) argument
/frameworks/base/core/java/android/widget/
H A DTextView.java4561 * Sets the height of the TextView to be at most {@code maxPixels} tall.
4567 * @param maxPixels the maximum height of TextView in terms of pixels
4575 public void setMaxHeight(int maxPixels) { argument
4576 mMaximum = maxPixels;
4766 * Sets the width of the TextView to be at most {@code maxPixels} wide.
4772 * @param maxPixels the maximum width of TextView in terms of pixels
4780 public void setMaxWidth(int maxPixels) { argument
4781 mMaxWidth = maxPixels;

Completed in 99 milliseconds