Home
last modified time | relevance | path

Searched refs:mActionUpPoints (Results 1 – 2 of 2) sorted by relevance

/cts/tests/tests/systemui/src/android/systemui/cts/
DWindowInsetsPresenterDrawable.java49 private final List<Point> mActionUpPoints; field in WindowInsetsPresenterDrawable
100 mActionUpPoints = new ArrayList<>(); in WindowInsetsPresenterDrawable()
200 mActionUpPoints.add(p); in onTouch()
232 return mActionUpPoints; in getActionUpPoints()
DWindowInsetsBehaviorTests.java188 private List<Point> mActionUpPoints; field in WindowInsetsBehaviorTests
628 mActionUpPoints = mActivity.getActionUpPoints(); in systemGesture_excludeViewRects_withoutAnyCancel()
634 assertEquals(swipeCount[0], mActionUpPoints.size()); in systemGesture_excludeViewRects_withoutAnyCancel()
650 mActionUpPoints = mActivity.getActionUpPoints(); in systemGesture_notExcludeViewRects_withoutAnyCancel()
656 assertEquals(swipeCount, mActionUpPoints.size()); in systemGesture_notExcludeViewRects_withoutAnyCancel()
712 assertEquals("Action up points.", swipeCount, mActionUpPoints.size()); in swipeInsideLimit_systemUiVisible_noEventCanceled()
727 assertEquals("Action up points.", 0, mActionUpPoints.size()); in swipeOutsideLimit_systemUiVisible_allEventsCanceled()
742 assertEquals("Action up points.", swipeCount, mActionUpPoints.size()); in swipeInsideLimit_immersiveSticky_noEventCanceled()
757 assertEquals("Action up points.", swipeCount, mActionUpPoints.size()); in swipeOutsideLimit_immersiveSticky_noEventCanceled()
783 mActionUpPoints = mActivity.getActionUpPoints(); in testSystemGestureExclusionLimit()