Home
last modified time | relevance | path

Searched refs:viewStart (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationShelf.java418 final float viewStart = child.getTranslationY(); in updateAppearance() local
437 if (viewStart >= shelfStart && mNotGoneIndex == -1) { in updateAppearance()
465 updateCornerRoundnessOnScroll(anv, viewStart, shelfStart); in updateAppearance()
531 float viewStart,
542 final boolean shouldUpdateCornerRoundness = viewStart < shelfStart
554 final float viewEnd = viewStart + anv.getActualHeight();
560 if (viewStart >= cornerAnimationTop) {
563 (viewStart - cornerAnimationTop) / cornerAnimationDistance);
732 float viewStart = view.getTranslationY();
739 viewStart + fullHeight - iconTransformStart,
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
DNotificationShelfTest.kt159 val viewStart = 1f in getAmountInShelf_lastViewBelowShelf_completelyInShelf() constant
163 whenever(expandableView.translationY).thenReturn(viewStart) in getAmountInShelf_lastViewBelowShelf_completelyInShelf()
188 val viewStart = 0f in getAmountInShelf_lastViewAlmostBelowShelf_completelyInShelf() constant
193 whenever(expandableView.translationY).thenReturn(viewStart) in getAmountInShelf_lastViewAlmostBelowShelf_completelyInShelf()
218 val viewStart = 0f in getAmountInShelf_lastViewHalfClippedByShelf_halfInShelf() constant
223 whenever(expandableView.translationY).thenReturn(viewStart) in getAmountInShelf_lastViewHalfClippedByShelf_halfInShelf()
248 val viewStart = 0f in getAmountInShelf_lastViewAboveShelf_notInShelf() constant
253 whenever(expandableView.translationY).thenReturn(viewStart) in getAmountInShelf_lastViewAboveShelf_notInShelf()
DStackScrollAlgorithmTest.kt568 val viewStart = 0f in <lambda>() constant
576 expandableViewState.yTranslation = viewStart in <lambda>()
585 val viewStart = 1f in <lambda>() constant
592 expandableViewState.yTranslation = viewStart in <lambda>()
601 val viewStart = 1f in <lambda>() constant
608 expandableViewState.yTranslation = viewStart in <lambda>()
/frameworks/base/core/java/com/android/internal/widget/
DLinearSmoothScroller.java266 public int calculateDtToFit(int viewStart, int viewEnd, int boxStart, int boxEnd, int in calculateDtToFit() argument
270 return boxStart - viewStart; in calculateDtToFit()
274 final int dtStart = boxStart - viewStart; in calculateDtToFit()