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/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/Launcher3/quickstep/src/com/android/quickstep/ |
D | LauncherBackAnimationController.java | 96 private final Rect mStartRect = new Rect(); field in LauncherBackAnimationController 300 mStartRect.set(appTarget.windowConfiguration.getMaxBounds()); in startBack() 303 mStartRect.inset(0, 0, 0, appTarget.contentInsets.bottom); in startBack() 308 mCurrentRect.set(mStartRect); in startBack() 366 float screenWidth = mStartRect.width(); in updateBackProgress() 367 float screenHeight = mStartRect.height(); in updateBackProgress() 397 final float scale = targetRect.width() / mStartRect.width(); in applyTransform() 404 mTransaction.setWindowCrop(mBackTarget.leash, mStartRect); in applyTransform() 470 mStartRect.setEmpty(); in finishAnimation()
|
/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/quickstep/src/com/android/quickstep/util/ |
D | RectFSpringAnim.java | 97 private final RectF mStartRect; field in RectFSpringAnim 142 mStartRect = config.startRect; in RectFSpringAnim() 144 mCurrentCenterX = mStartRect.centerX(); in RectFSpringAnim() 157 mCurrentY = getTrackedYFromRect(mStartRect); in RectFSpringAnim() 258 float minVisibleChange = Math.abs(1f / mStartRect.height()); in start() 422 float currentWidth = Utilities.mapRange(mCurrentScaleProgress, mStartRect.width(), in onUpdate() 424 float currentHeight = Utilities.mapRange(mCurrentScaleProgress, mStartRect.height(), in onUpdate()
|