Home
last modified time | relevance | path

Searched refs:bubbleCount (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/bubbles/animation/
DBubbleAnimator.kt33 private val bubbleCount: Int, in <lambda>() constant in com.android.launcher3.taskbar.bubbles.animation.BubbleAnimator
170 val totalSpace = (bubbleCount - 2) * expandedBarIconSpacing in <lambda>()
171 val totalIconSize = (bubbleCount - 1) * iconSize in <lambda>()
179 val totalSpace = (bubbleCount - 2 + bubbleScale) * expandedBarIconSpacing in <lambda>()
180 val totalIconSize = (bubbleCount - 1 + bubbleScale) * iconSize in <lambda>()
244 (bubbleCount - state.bubbleIndex - 1) * iconAndSpacing + iconSize / 2f in <lambda>()
257 (bubbleCount - state.bubbleIndex - 1) * iconAndSpacing + iconSize / 2f in <lambda>()
277 val bubbleCountOnEnd = bubbleCount - 1 in <lambda>()
302 private fun getBubblesToTheLeft(bubbleIndex: Int, bubbleCount: Int = this.bubbleCount): Int = in <lambda>()
305 if (onLeft) bubbleCount - bubbleIndex - 1 else bubbleIndex in <lambda>()
[all …]
/packages/apps/Launcher3/quickstep/tests/multivalentTests/src/com/android/launcher3/taskbar/bubbles/animation/
DBubbleAnimatorTest.kt42 bubbleCount = 5, in animateNewBubble_isRunning()
63 bubbleCount = 5, in animateRemovedBubble_isRunning()
90 bubbleCount = 5, in animateNewAndRemoveOld_isRunning()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/bubbles/
DBubbleBarView.java856 int bubbleCount = getChildCount(); in removeBubble() local
858 bubbleCount, mBubbleBarLocation.isOnLeft(isLayoutRtl())); in removeBubble()
885 BubbleView lastBubble = (BubbleView) getChildAt(bubbleCount - 1); in removeBubble()
889 ? bubbleIndex == bubbleCount - 2 in removeBubble()
890 : bubbleIndex == bubbleCount - 1; in removeBubble()
1112 private float getExpandedBubbleTranslationX(int bubbleIndex, int bubbleCount, boolean onLeft) { in getExpandedBubbleTranslationX() argument
1113 if (bubbleIndex < 0 || bubbleIndex >= bubbleCount) { in getExpandedBubbleTranslationX()
1121 translationX = mBubbleBarPadding + (bubbleCount - bubbleIndex - 1) * iconAndSpacing; in getExpandedBubbleTranslationX()
1474 int bubbleCount = getChildCount() - (hasOverflow() ? 1 : 0); in updateContentDescription() local
1475 if (bubbleCount > 1) { in updateContentDescription()
[all …]