Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
H A 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()
H A DNotificationStackScrollLayoutTest.java603 verify(mNotificationSwipeHelper).resetExposedMenuView(true, true); in testSetIsBeingDraggedResetsExposedMenu()
609 verify(mNotificationSwipeHelper).resetExposedMenuView(true, true); in testPanelTrackingStartResetsExposedMenu()
615 verify(mNotificationSwipeHelper).resetExposedMenuView(true, true); in testDarkModeResetsExposedMenu()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationListContainer.java137 void resetExposedMenuView(boolean animate, boolean force); in resetExposedMenuView() method
H A 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
H A DNotificationStackScrollLayoutController.java423 mSwipeHelper.resetExposedMenuView(false, true);
1519 mSwipeHelper.resetExposedMenuView(true /* animate */, true /* force */);
1789 public void resetExposedMenuView(boolean animate, boolean force) {
1790 mSwipeHelper.resetExposedMenuView(animate, force);
H A DNotificationStackScrollLayout.java3939 resetExposedMenuView(true /* animate */, true /* force */); in setIsBeingDragged()
4104 resetExposedMenuView(true /* animate */, true /* force */); in onPanelTrackingStarted()
4463 resetExposedMenuView(true /* animate */, true /* animate */); in setHideAmount()
5950 private void resetExposedMenuView(boolean animate, boolean force) {
5951 mSwipeHelper.resetExposedMenuView(animate, force);
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DNotificationGutsManager.java516 mListContainer.resetExposedMenuView(false /* animate */, true /* force */); in closeAndSaveGuts()