Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/anim/
DRoundedRectRevealOutlineProvider.java33 private final Rect mEndRect; field in RoundedRectRevealOutlineProvider
40 mEndRect = endRect; in RoundedRectRevealOutlineProvider()
52 mOutline.left = (int) ((1 - progress) * mStartRect.left + progress * mEndRect.left); in setProgress()
53 mOutline.top = (int) ((1 - progress) * mStartRect.top + progress * mEndRect.top); in setProgress()
54 mOutline.right = (int) ((1 - progress) * mStartRect.right + progress * mEndRect.right); in setProgress()
55 mOutline.bottom = (int) ((1 - progress) * mStartRect.bottom + progress * mEndRect.bottom); in setProgress()
/packages/apps/Launcher3/src/com/android/launcher3/popup/
DArrowPopup.java80 private final Rect mEndRect = new Rect(); field in ArrowPopup
363 mEndRect.set(0, 0, getMeasuredWidth(), getMeasuredHeight()); in animateOpen()
407 ((RevealOutlineAnimation) getOutlineProvider()).getOutline(mEndRect); in animateClose()
479 (arrowCornerRadius, mOutlineRadius, mStartRect, mEndRect); in createOpenCloseOutlineProvider()