Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/wmshell/
DBubbleEducationControllerTest.kt85 assertEquals(sut.shouldShowStackEducation(null), false) in testShouldShowStackEducation()
88 assertEquals(sut.shouldShowStackEducation(bubble), false) in testShouldShowStackEducation()
92 assertEquals(sut.shouldShowStackEducation(bubble), false) in testShouldShowStackEducation()
95 assertEquals(sut.shouldShowStackEducation(bubble), true) in testShouldShowStackEducation()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubbleEducationController.kt42 fun shouldShowStackEducation(bubble: BubbleViewProvider?): Boolean { in shouldShowStackEducation() method in com.android.wm.shell.bubbles.BubbleEducationController
DBubbleData.java888 && mEducationController.shouldShowStackEducation(mSelectedBubble) in dispatchPendingChanges()
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/bubbles/
DBubbleDataTest.java414 when(mEducationController.shouldShowStackEducation(any())).thenReturn(false); in test_shouldNotShowEducation()
433 when(mEducationController.shouldShowStackEducation(any())).thenReturn(true); in test_shouldShowEducation()
453 when(mEducationController.shouldShowStackEducation(any())).thenReturn(true); in test_shouldShowEducation_shouldAutoExpand()