OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:newCrop
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Camera2/src/com/android/camera/crop/
CropObject.java
238
RectF
newCrop
= fixedCornerResize(crop, movingEdges, dx, dy);
240
mBoundedRect.fixedAspectResizeInner(
newCrop
);
294
RectF
newCrop
= null;
297
newCrop
= new RectF(r.left, r.top, r.left + r.width() + dx, r.top + r.height()
300
newCrop
= new RectF(r.right - r.width() + dx, r.top, r.right, r.top + r.height()
303
newCrop
= new RectF(r.right - r.width() + dx, r.bottom - r.height() + dy,
306
newCrop
= new RectF(r.left, r.bottom - r.height() + dy, r.left
309
return
newCrop
;
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropObject.java
240
RectF
newCrop
= fixedCornerResize(crop, movingEdges, dx, dy);
242
mBoundedRect.fixedAspectResizeInner(
newCrop
);
296
RectF
newCrop
= null;
299
newCrop
= new RectF(r.left, r.top, r.left + r.width() + dx, r.top + r.height()
302
newCrop
= new RectF(r.right - r.width() + dx, r.top, r.right, r.top + r.height()
305
newCrop
= new RectF(r.right - r.width() + dx, r.bottom - r.height() + dy,
308
newCrop
= new RectF(r.left, r.bottom - r.height() + dy, r.left
311
return
newCrop
;
Completed in 348 milliseconds