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.java209 private List<Point> mActionUpPoints; field in WindowInsetsBehaviorTests
654 mActionUpPoints = mActivity.getActionUpPoints(); in systemGesture_excludeViewRects_withoutAnyCancel()
660 assertEquals(swipeCount[0], mActionUpPoints.size()); in systemGesture_excludeViewRects_withoutAnyCancel()
676 mActionUpPoints = mActivity.getActionUpPoints(); in systemGesture_notExcludeViewRects_withoutAnyCancel()
682 assertEquals(swipeCount, mActionUpPoints.size()); in systemGesture_notExcludeViewRects_withoutAnyCancel()
738 assertEquals("Action up points.", swipeCount, mActionUpPoints.size()); in swipeInsideLimit_systemUiVisible_noEventCanceled()
753 assertEquals("Action up points.", 0, mActionUpPoints.size()); in swipeOutsideLimit_systemUiVisible_allEventsCanceled()
769 assertEquals("Action up points.", swipeCount, mActionUpPoints.size()); in swipeInsideLimit_immersiveSticky_noEventCanceled()
785 assertEquals("Action up points.", swipeCount, mActionUpPoints.size()); in swipeOutsideLimit_immersiveSticky_noEventCanceled()
811 mActionUpPoints = mActivity.getActionUpPoints(); in testSystemGestureExclusionLimit()