HomeSort by relevance Sort by last modified time
    Searched refs:originalBounds (Results 1 - 7 of 7) sorted by null

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/info/
InfoPanel.java 94 Rect originalBounds = MasterImage.getImage().getOriginalBounds();
95 mImageSize.setText("" + originalBounds.width() + " x " + originalBounds.height());
  /packages/apps/Camera2/src/com/android/camera/util/
ImageLoader.java 265 * in the rect originalBounds.
270 * @param originalBounds If not null, set to the actual bounds of the stored bitmap.
275 Rect originalBounds, boolean useMin) {
281 if (originalBounds != null) {
282 originalBounds.set(storedBounds);
316 * in the rect originalBounds. The output is also transformed to the given
323 * @param originalBounds set to the actual bounds of the stored bitmap.
327 int orientation, Rect originalBounds) {
328 Bitmap bmap = loadConstrainedBitmap(uri, context, maxSideLength, originalBounds, false);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/
ImageLoader.java 342 * in the rect originalBounds.
347 * @param originalBounds If not null, set to the actual bounds of the stored bitmap.
352 Rect originalBounds, boolean useMin) {
358 if (originalBounds != null) {
359 originalBounds.set(storedBounds);
393 * in the rect originalBounds. The output is also transformed to the given
400 * @param originalBounds set to the actual bounds of the stored bitmap.
404 int orientation, Rect originalBounds) {
405 Bitmap bmap = loadConstrainedBitmap(uri, context, maxSideLength, originalBounds, false);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
GeometryMathUtils.java 339 Rect originalBounds, float w, float h,
342 RectF rCrop = new RectF(0, 0, originalBounds.width(), originalBounds.height());
351 float cScale = originalBounds.width() / rCrop.width();
353 cScale = originalBounds.height() / rCrop.height();
MasterImage.java 202 Rect originalBounds = new Rect();
205 mOrientation, originalBounds);
206 setOriginalBounds(originalBounds);
ImageShow.java 819 Rect originalBounds = MasterImage.getImage().getOriginalBounds();
820 RectF screenPos = new RectF(originalBounds);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/
FilterShowActivity.java 745 Rect originalBounds = master.getOriginalBounds();
748 if (highresPreviewSize > originalBounds.width()) {
749 highresPreviewSize = originalBounds.width();
    [all...]

Completed in 116 milliseconds