Home | History | Annotate | Download | only in crop

Lines Matching defs:crop

17 package com.android.gallery3d.filtershow.crop;
192 RectF crop = mBoundedRect.getInner();
205 dx = Math.min(crop.left + dX, crop.right - minWidthHeight) - crop.left;
208 dy = Math.min(crop.top + dY, crop.bottom - minWidthHeight) - crop.top;
211 dx = Math.max(crop.right + dX, crop.left + minWidthHeight)
212 - crop.right;
215 dy = Math.max(crop.bottom + dY, crop.top + minWidthHeight)
216 - crop.bottom;
221 crop.left, crop.bottom
224 crop.right, crop.top
227 l1[1] = crop.top;
228 l2[1] = crop.bottom;
240 RectF newCrop = fixedCornerResize(crop, movingEdges, dx, dy);
245 crop.left += dx;
248 crop.top += dy;
251 crop.right += dx;
254 crop.bottom += dy;
256 mBoundedRect.resizeInner(crop);