Home
last modified time | relevance | path

Searched refs:NotificationSwipeHelper (Results 1 – 6 of 6) sorted by relevance

/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationSwipeHelperTest.java65 private NotificationSwipeHelper mSwipeHelper;
66 private NotificationSwipeHelper.NotificationCallback mCallback;
79 mCallback = mock(NotificationSwipeHelper.NotificationCallback.class); in setUp()
81 mSwipeHelper = spy(new NotificationSwipeHelper( in setUp()
439 NotificationSwipeHelper.isTouchInView(mEvent, null)); in testIsTouchInView()
467 NotificationSwipeHelper.isTouchInView(mEvent, null)); in testIsTouchInView_expandable()
H A DNotificationStackScrollLayoutControllerTest.java116 private NotificationSwipeHelper.Builder mNotificationSwipeHelperBuilder;
117 @Mock private NotificationSwipeHelper mNotificationSwipeHelper;
H A DNotificationStackScrollLayoutTest.java104 @Mock private NotificationSwipeHelper mNotificationSwipeHelper;
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationSwipeHelper.java43 class NotificationSwipeHelper extends SwipeHelper implements NotificationSwipeActionHelper { class
64 NotificationSwipeHelper( in NotificationSwipeHelper() method in NotificationSwipeHelper
515 NotificationSwipeHelper build() { in build()
516 return new NotificationSwipeHelper(mResources, mViewConfiguration, mFalsingManager, in build()
H A DNotificationStackScrollLayoutController.java159 private final NotificationSwipeHelper.Builder mNotificationSwipeHelperBuilder;
185 private NotificationSwipeHelper mSwipeHelper;
405 private final NotificationSwipeHelper.NotificationCallback mNotificationCallback =
406 new NotificationSwipeHelper.NotificationCallback() {
637 NotificationSwipeHelper.Builder notificationSwipeHelperBuilder, in NotificationStackScrollLayoutController()
1429 if (view != null && !NotificationSwipeHelper.isTouchInView(ev, view)) {
1784 if (!NotificationSwipeHelper.isTouchInView(ev, guts) && isUp && !swipeWantsIt &&
1848 if (guts != null && !NotificationSwipeHelper.isTouchInView(ev, guts)
H A DNotificationStackScrollLayout.java162 private NotificationSwipeHelper mSwipeHelper;
938 void initView(Context context, NotificationSwipeHelper swipeHelper) { in initView()