Home
last modified time | relevance | path

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

/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationSwipeHelperTest.java150 doNothing().when(mSwipeHelper).resetExposedMenuView(true, false); in testOnDownUpdate_ExpandableNotificationRow()
158 verify(mSwipeHelper, times(1)).resetExposedMenuView(true, false); in testOnDownUpdate_ExpandableNotificationRow()
166 doNothing().when(mSwipeHelper).resetExposedMenuView(true, false); in testOnDownUpdate_notExpandableNotificationRow()
174 verify(mSwipeHelper, times(1)).resetExposedMenuView(true, false); in testOnDownUpdate_notExpandableNotificationRow()
377 mSwipeHelper.resetExposedMenuView(false, false); in testResetExposedMenuView_noReset()
395 mSwipeHelper.resetExposedMenuView(true, false); in testResetExposedMenuView_animate()
421 mSwipeHelper.resetExposedMenuView(false, false); in testResetExposedMenuView_noAnimate()
H A DNotificationStackScrollLayoutTest.java425 verify(mNotificationSwipeHelper).resetExposedMenuView(true, true); in testSetIsBeingDraggedResetsExposedMenu()
432 verify(mNotificationSwipeHelper).resetExposedMenuView(true, true); in testPanelTrackingStartResetsExposedMenu()
439 verify(mNotificationSwipeHelper).resetExposedMenuView(true, true); in testDarkModeResetsExposedMenu()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationSwipeHelper.java71 mFalsingCheck = () -> resetExposedMenuView(true /* animate */, true /* force */); in NotificationSwipeHelper()
139 resetExposedMenuView(true /* animate */, false /* force */); in onDownUpdate()
420 public void resetExposedMenuView(boolean animate, boolean force) { in resetExposedMenuView() method in NotificationSwipeHelper
H A DNotificationListContainer.java137 void resetExposedMenuView(boolean animate, boolean force); in resetExposedMenuView() method
H A DNotificationStackScrollLayoutController.java399 mSwipeHelper.resetExposedMenuView(false, true);
1434 mSwipeHelper.resetExposedMenuView(true /* animate */, true /* force */);
1684 public void resetExposedMenuView(boolean animate, boolean force) {
1685 mSwipeHelper.resetExposedMenuView(animate, force);
H A DNotificationStackScrollLayout.java3821 resetExposedMenuView(true /* animate */, true /* force */); in setIsBeingDragged()
3965 resetExposedMenuView(true /* animate */, true /* force */); in onPanelTrackingStarted()
4356 resetExposedMenuView(true /* animate */, true /* animate */); in setHideAmount()
5736 private void resetExposedMenuView(boolean animate, boolean force) {
5737 mSwipeHelper.resetExposedMenuView(animate, force);
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
H A DNotificationViewHierarchyManagerTest.java341 public void resetExposedMenuView(boolean animate, boolean force) {} in resetExposedMenuView() method in NotificationViewHierarchyManagerTest.FakeListContainer
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DNotificationGutsManager.java529 mListContainer.resetExposedMenuView(false /* animate */, true /* force */); in closeAndSaveGuts()