Searched refs:mStartRect (Results 1 – 5 of 5) sorted by relevance
/packages/apps/Launcher3/src/com/android/launcher3/anim/ |
D | RoundedRectRevealOutlineProvider.java | 32 private final Rect mStartRect; field in RoundedRectRevealOutlineProvider 39 mStartRect = startRect; 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/quickstep/recents_ui_overrides/src/com/android/quickstep/util/ |
D | RectFSpringAnim.java | 84 private final RectF mStartRect; field in RectFSpringAnim 107 mStartRect = startRect; in RectFSpringAnim() 109 mCurrentCenterX = mStartRect.centerX(); in RectFSpringAnim() 112 mCurrentY = mTrackingBottomY ? mStartRect.bottom : mStartRect.top; in RectFSpringAnim() 168 float minVisibleChange = 1f / mStartRect.height(); 202 float currentWidth = Utilities.mapRange(mCurrentScaleProgress, mStartRect.width(), in onUpdate() 204 float currentHeight = Utilities.mapRange(mCurrentScaleProgress, mStartRect.height(), in onUpdate()
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/data/ |
D | MediaPickerMessagePartData.java | 23 private final Rect mStartRect; field in MediaPickerMessagePartData 47 mStartRect = startRect; in MediaPickerMessagePartData() 55 return mStartRect; in getStartRect() 62 mStartRect.set(startRect); in setStartRect()
|
/packages/apps/Messaging/src/com/android/messaging/ui/animation/ |
D | PopupTransitionAnimation.java | 46 private final Rect mStartRect; field in PopupTransitionAnimation 77 mStartRect = startRect; in PopupTransitionAnimation() 78 mCurrentRect = new Rect(mStartRect); in PopupTransitionAnimation() 193 mCurrentRect = mRectEvaluator.evaluate(interpolatedTime, mStartRect, mDestRect); in applyTransformation()
|
/packages/apps/Launcher3/src/com/android/launcher3/popup/ |
D | ArrowPopup.java | 79 private final Rect mStartRect = new Rect(); field in ArrowPopup 472 mStartRect.set(arrowCenterX - halfArrowWidth, arrowCenterY, arrowCenterX + halfArrowWidth, in createOpenCloseOutlineProvider() 479 (arrowCornerRadius, mOutlineRadius, mStartRect, mEndRect); in createOpenCloseOutlineProvider()
|