Home | History | Annotate | Download | only in util

Lines Matching refs:reqHeight

110      * @param reqHeight The requested height of the resulting bitmap
116 int reqWidth, int reqHeight, ImageCache cache) {
124 options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight);
141 * @param reqHeight The requested height of the resulting bitmap
147 int reqWidth, int reqHeight, ImageCache cache) {
155 options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight);
172 * @param reqHeight The requested height of the resulting bitmap
178 FileDescriptor fileDescriptor, int reqWidth, int reqHeight, ImageCache cache) {
186 options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight);
229 * @param reqHeight The requested height of the resulting bitmap
233 int reqWidth, int reqHeight) {
239 if (height > reqHeight || width > reqWidth) {
242 final int heightRatio = Math.round((float) height / (float) reqHeight);
258 final float totalReqPixelsCap = reqWidth * reqHeight * 2;