Home | History | Annotate | Download | only in util

Lines Matching refs:reqWidth

188      * @param reqWidth the desired width of the bitmap. Can be ImageRequest.UNSPECIFIED_SIZE.
193 final BitmapFactory.Options options, final int reqWidth, final int reqHeight) {
200 final boolean checkWidth = reqWidth != ImageRequest.UNSPECIFIED_SIZE;
202 (checkWidth && width > reqWidth)) {
210 && (!checkWidth || (halfWidth / inSampleSize) > reqWidth)) {