Home
last modified time | relevance | path

Searched refs:resetExposedMenuView (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
DNotificationSwipeHelperTest.java174 doNothing().when(mSwipeHelper).resetExposedMenuView(true, false); in testOnDownUpdate_ExpandableNotificationRow()
182 verify(mSwipeHelper, times(1)).resetExposedMenuView(true, false); in testOnDownUpdate_ExpandableNotificationRow()
190 doNothing().when(mSwipeHelper).resetExposedMenuView(true, false); in testOnDownUpdate_notExpandableNotificationRow()
198 verify(mSwipeHelper, times(1)).resetExposedMenuView(true, false); in testOnDownUpdate_notExpandableNotificationRow()
550 mSwipeHelper.resetExposedMenuView(false, false); in testResetExposedMenuView_noReset()
568 mSwipeHelper.resetExposedMenuView(true, false); in testResetExposedMenuView_animate()
594 mSwipeHelper.resetExposedMenuView(false, false); in testResetExposedMenuView_noAnimate()
DNotificationStackScrollLayoutTest.java586 verify(mNotificationSwipeHelper).resetExposedMenuView(true, true); in testSetIsBeingDraggedResetsExposedMenu()
592 verify(mNotificationSwipeHelper).resetExposedMenuView(true, true); in testPanelTrackingStartResetsExposedMenu()
598 verify(mNotificationSwipeHelper).resetExposedMenuView(true, true); in testDarkModeResetsExposedMenu()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationListContainer.java124 void resetExposedMenuView(boolean animate, boolean force); in resetExposedMenuView() method
DNotificationSwipeHelper.java85 mFalsingCheck = () -> resetExposedMenuView(true /* animate */, true /* force */); in NotificationSwipeHelper()
157 resetExposedMenuView(true /* animate */, false /* force */); in onDownUpdate()
479 public void resetExposedMenuView(boolean animate, boolean force) { in resetExposedMenuView() method in NotificationSwipeHelper
DNotificationStackScrollLayoutController.java501 mSwipeHelper.resetExposedMenuView(false, true);
1660 mSwipeHelper.resetExposedMenuView(true /* animate */, true /* force */);
1910 public void resetExposedMenuView(boolean animate, boolean force) {
1911 mSwipeHelper.resetExposedMenuView(animate, force);
DNotificationStackScrollLayout.java3978 resetExposedMenuView(true /* animate */, true /* force */); in setIsBeingDragged()
4148 resetExposedMenuView(true /* animate */, true /* force */); in onPanelTrackingStarted()
4516 resetExposedMenuView(true /* animate */, true /* animate */); in setHideAmount()
6083 private void resetExposedMenuView(boolean animate, boolean force) {
6084 mSwipeHelper.resetExposedMenuView(animate, force);
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DNotificationGutsManagerTest.java316 verify(mNotificationListContainer).resetExposedMenuView(anyBoolean(), anyBoolean()); in testLockscreenShadeVisible_notVisible_listContainerReset()
DNotificationGutsManagerWithScenesTest.kt308 .resetExposedMenuView(ArgumentMatchers.anyBoolean(), ArgumentMatchers.anyBoolean()) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotificationGutsManager.java547 mListContainer.resetExposedMenuView(false /* animate */, true /* force */); in closeAndSaveGuts()