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/src/com/android/quickstep/util/ |
D | RectFSpringAnim.java | 88 private final RectF mStartRect; field in RectFSpringAnim 111 mStartRect = startRect; in RectFSpringAnim() 113 mCurrentCenterX = mStartRect.centerX(); in RectFSpringAnim() 116 mCurrentY = mTrackingBottomY ? mStartRect.bottom : mStartRect.top; in RectFSpringAnim() 179 float minVisibleChange = Math.abs(1f / mStartRect.height()); 233 float currentWidth = Utilities.mapRange(mCurrentScaleProgress, mStartRect.width(), in onUpdate() 235 float currentHeight = Utilities.mapRange(mCurrentScaleProgress, mStartRect.height(), in onUpdate()
|
D | RectFSpringAnim2.java | 94 private final RectF mStartRect; field in RectFSpringAnim2 136 mStartRect = startRect; in RectFSpringAnim2() 139 mCurrentCenterY = mStartRect.centerY(); in RectFSpringAnim2() 140 mCurrentCenterX = mStartRect.centerX(); in RectFSpringAnim2() 316 float currentWidth = Utilities.mapRange(rectProgress, mStartRect.width(), in onUpdate() 318 float currentHeight = Utilities.mapRange(rectProgress, 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()
|