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

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropObject.java 241 RectF newCrop = fixedCornerResize(crop, movingEdges, dx, dy);
243 mBoundedRect.fixedAspectResizeInner(newCrop);
297 RectF newCrop = null;
300 newCrop = new RectF(r.left, r.top, r.left + r.width() + dx, r.top + r.height()
303 newCrop = new RectF(r.right - r.width() + dx, r.top, r.right, r.top + r.height()
306 newCrop = new RectF(r.right - r.width() + dx, r.bottom - r.height() + dy,
309 newCrop = new RectF(r.left, r.bottom - r.height() + dy, r.left
312 return newCrop;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageCrop.java 345 RectF newCrop = null;
348 newCrop = new RectF(r.left, r.top, r.left + r.width() + dx, r.top + r.height()
351 newCrop = new RectF(r.right - r.width() + dx, r.top, r.right, r.top + r.height()
354 newCrop = new RectF(r.right - r.width() + dx, r.bottom - r.height() + dy,
357 newCrop = new RectF(r.left, r.bottom - r.height() + dy, r.left
360 return newCrop;
424 RectF newCrop = fixedCornerResize(crop, movingEdges, dx, dy);
426 mBounded.fixedAspectResizeInner(newCrop);
427 newCrop = mBounded.getInner();
428 setCropBounds(newCrop);
    [all...]

Completed in 27 milliseconds