Home | History | Annotate | Download | only in media

Lines Matching full:right

114                     int right = mDrawRect.right + 1;
123 int xMiddle = mDrawRect.left + ((mDrawRect.right - mDrawRect.left) / 2);
130 mResizeDrawableWidth.setBounds(right - widthWidth, yMiddle - widthHeight, right + widthWidth, yMiddle
188 boolean horizCheck = (x >= r.left - hysteresis) && (x < r.right + hysteresis);
194 if ((Math.abs(r.right - x) < hysteresis) && verticalCheck) {
246 mCropRect.offset(Math.min(0, mImageRect.right - mCropRect.right), Math.min(0, mImageRect.bottom - mCropRect.bottom));
298 } else if (r.right > mImageRect.right) {
299 r.offset(-(r.right - mImageRect.right), 0);
314 return new Rect((int) mCropRect.left, (int) mCropRect.top, (int) mCropRect.right, (int) mCropRect.bottom);
319 RectF r = new RectF(mCropRect.left, mCropRect.top, mCropRect.right, mCropRect.bottom);
321 return new Rect(Math.round(r.left), Math.round(r.top), Math.round(r.right), Math.round(r.bottom));