Home | History | Annotate | Download | only in launcher3

Lines Matching defs:fullSize

678                     Bitmap fullSize = null;
684 fullSize = BitmapFactory.decodeStream(is, null, options);
687 if (fullSize != null) {
689 scaleDownSampleSize = bounds.x / fullSize.getWidth();
697 if (roundedTrueCrop.width() > fullSize.getWidth()) {
699 roundedTrueCrop.right = roundedTrueCrop.left + fullSize.getWidth();
701 if (roundedTrueCrop.right > fullSize.getWidth()) {
708 if (roundedTrueCrop.height() > fullSize.getHeight()) {
710 roundedTrueCrop.bottom = roundedTrueCrop.top + fullSize.getHeight();
712 if (roundedTrueCrop.bottom > fullSize.getHeight()) {
720 crop = Bitmap.createBitmap(fullSize, roundedTrueCrop.left,