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

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageRedEye.java 33 private RectF mCurrentRect = null;
63 mCurrentRect = new RectF();
64 mCurrentRect.left = ex - mTouchPadding;
65 mCurrentRect.top = ey - mTouchPadding;
68 mCurrentRect.right = ex + mTouchPadding;
69 mCurrentRect.bottom = ey + mTouchPadding;
72 if (mCurrentRect != null) {
78 RectF r = new RectF(mCurrentRect);
80 RectF r2 = new RectF(mCurrentRect);
87 mCurrentRect = null
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/animation/
PopupTransitionAnimation.java 49 private Rect mCurrentRect;
78 mCurrentRect = new Rect(mStartRect);
193 mCurrentRect = mRectEvaluator.evaluate(interpolatedTime, mStartRect, mDestRect);
267 canvas.translate(mCurrentRect.left, mCurrentRect.top - mPopupRect.top);
272 canvas.scale(mCurrentRect.width() / viewWidth,
273 mCurrentRect.height() / viewHeight);
275 canvas.clipRect(0, 0, mCurrentRect.width(), mCurrentRect.height());

Completed in 213 milliseconds