Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
H A DStackScrollAlgorithmTest.kt453 expandableViewState.headsUpIsVisible = false
462 assertTrue(expandableViewState.headsUpIsVisible)
468 expandableViewState.headsUpIsVisible = true
477 assertFalse(expandableViewState.headsUpIsVisible)
483 expandableViewState.headsUpIsVisible = true
492 assertTrue(expandableViewState.headsUpIsVisible)
498 expandableViewState.headsUpIsVisible = true
507 assertTrue(expandableViewState.headsUpIsVisible)
513 expandableViewState.headsUpIsVisible = true
522 assertTrue(expandableViewState.headsUpIsVisible)
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DExpandableViewState.java99 public boolean headsUpIsVisible; field in ExpandableViewState
136 headsUpIsVisible = svs.headsUpIsVisible; in copyFrom()
180 if (headsUpIsVisible) { in applyToView()
236 if (headsUpIsVisible) { in animateTo()
H A DStackScrollAlgorithm.java304 if (!child.mustStayOnScreen() || state.headsUpIsVisible) { in updateClipping()
523 viewState.headsUpIsVisible = viewEnd < hunMax; in maybeUpdateHeadsUpIsVisible()
642 viewState.headsUpIsVisible = false; in updateViewWithShelf()
762 if (topHeadsUpEntry == null && row.mustStayOnScreen() && !childState.headsUpIsVisible) { in updateHeadsUpStates()
770 childState.headsUpIsVisible, row.showingPulsing(), in updateHeadsUpStates()
820 boolean shouldHunBeVisibleWhenScrolled(boolean mustStayOnScreen, boolean headsUpIsVisible, in shouldHunBeVisibleWhenScrolled() argument
822 return mustStayOnScreen && !headsUpIsVisible in shouldHunBeVisibleWhenScrolled()
941 if (child.mustStayOnScreen() && !childViewState.headsUpIsVisible in updateChildZValue()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DExpandableView.java647 mViewState.headsUpIsVisible = false; in resetViewState()