Home
last modified time | relevance | path

Searched refs:lastVisibleBackgroundChild (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
DNotificationShelfTest.kt343 val lastVisibleBackgroundChild = mock<ExpandableView>() in updateState_withNullLastVisibleBackgroundChild_hideShelf() constant
345 whenever(lastVisibleBackgroundChild.viewState).thenReturn(expandableViewState) in updateState_withNullLastVisibleBackgroundChild_hideShelf()
349 whenever(ambientState.lastVisibleBackgroundChild).thenReturn(null) in updateState_withNullLastVisibleBackgroundChild_hideShelf()
369 val lastVisibleBackgroundChild = mock<ExpandableView>() in updateState_withNullFirstViewInShelf_hideShelf() constant
371 whenever(lastVisibleBackgroundChild.viewState).thenReturn(expandableViewState) in updateState_withNullFirstViewInShelf_hideShelf()
372 whenever(ambientState.lastVisibleBackgroundChild).thenReturn(lastVisibleBackgroundChild) in updateState_withNullFirstViewInShelf_hideShelf()
394 val lastVisibleBackgroundChild = mock<ExpandableView>() in updateState_withCollapsedShade_hideShelf() constant
396 whenever(lastVisibleBackgroundChild.viewState).thenReturn(expandableViewState) in updateState_withCollapsedShade_hideShelf()
397 whenever(ambientState.lastVisibleBackgroundChild).thenReturn(lastVisibleBackgroundChild) in updateState_withCollapsedShade_hideShelf()
421 val lastVisibleBackgroundChild = mock<ExpandableView>() in updateState_withHiddenSectionBeforeShelf_hideShelf() constant
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DAmbientState.java520 ExpandableView lastVisibleBackgroundChild) { in setLastVisibleBackgroundChild() argument
521 mLastVisibleBackgroundChild = lastVisibleBackgroundChild; in setLastVisibleBackgroundChild()