Searched refs:mPillRect (Results 1 – 5 of 5) sorted by relevance
/packages/apps/Launcher3/src/com/android/launcher3/util/ |
D | PillRevealOutlineProvider.java | 32 protected Rect mPillRect; field in PillRevealOutlineProvider 46 mPillRect = pillRect; in PillRevealOutlineProvider() 58 int centerToEdge = Math.max(mCenterX, mPillRect.width() - mCenterX); in setProgress() 62 mOutline.left = Math.max(mPillRect.left, mCenterX - currentSize); in setProgress() 63 mOutline.top = Math.max(mPillRect.top, mCenterY - currentSize); in setProgress() 64 mOutline.right = Math.min(mPillRect.right, mCenterX + currentSize); in setProgress() 65 mOutline.bottom = Math.min(mPillRect.bottom, mCenterY + currentSize); in setProgress()
|
/packages/apps/Launcher3/src/com/android/launcher3/popup/ |
D | PopupItemView.java | 49 protected final Rect mPillRect; field in PopupItemView 69 mPillRect = new Rect(); in PopupItemView() 91 mPillRect.set(0, 0, getMeasuredWidth(), getMeasuredHeight()); in onMeasure() 129 mPillRect, this, mIconView, isContainerAboveIcon, pivotLeft, arrowCenter) in createOpenAnimation() 155 mPillRect, this, mIconView, isContainerAboveIcon, pivotLeft, arrowCenter) in createCloseAnimation()
|
/packages/apps/Launcher3/src/com/android/launcher3/shortcuts/ |
D | DeepShortcutView.java | 41 private final Rect mPillRect; field in DeepShortcutView 60 mPillRect = new Rect(); in DeepShortcutView() 96 mPillRect.set(0, 0, getMeasuredWidth(), getMeasuredHeight()); in onMeasure()
|
/packages/apps/Launcher3/src/com/android/launcher3/anim/ |
D | PillHeightRevealOutlineProvider.java | 40 int heightDifference = mPillRect.height() - mNewHeight; in setProgress() 41 mOutline.bottom = (int) (mPillRect.bottom - heightDifference * (1 - progress)); in setProgress()
|
/packages/apps/Launcher3/src/com/android/launcher3/notification/ |
D | NotificationItemView.java | 91 return new PillHeightRevealOutlineProvider(mPillRect, in animateHeightRemoval()
|