Searched refs:mEndRect (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/anim/
H A DRoundedRectRevealOutlineProvider.java38 private final Rect mEndRect; field in class:RoundedRectRevealOutlineProvider
53 mEndRect = endRect;
66 mOutline.left = (int) ((1 - progress) * mStartRect.left + progress * mEndRect.left);
67 mOutline.top = (int) ((1 - progress) * mStartRect.top + progress * mEndRect.top);
71 mOutline.right = (int) ((1 - progress) * mStartRect.right + progress * mEndRect.right);
72 mOutline.bottom = (int) ((1 - progress) * mStartRect.bottom + progress * mEndRect.bottom);
/packages/apps/Launcher3/src/com/android/launcher3/popup/
H A DPopupContainerWithArrow.java126 private final Rect mEndRect = new Rect(); field in class:PopupContainerWithArrow
370 mEndRect.set(0, top, getMeasuredWidth(), top + itemsTotalHeight);
372 (radius, radius, mStartRect, mEndRect).createRevealAnimator(this, false);
866 mEndRect.setEmpty();
870 outline.getRect(mEndRect);
889 if (mEndRect.isEmpty()) {
890 mEndRect.set(0, top, getMeasuredWidth(), top + itemsTotalHeight);
893 radius, radius, mStartRect, mEndRect).createRevealAnimator(this, true);

Completed in 213 milliseconds