Home
last modified time | relevance | path

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

/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/gestures/
DTouchExplorerTest.java105 private TouchExplorer mTouchExplorer; field in TouchExplorerTest
155 mTouchExplorer = new TouchExplorer(mContext, mMockAms, null, mHandler); in setUp()
156 mTouchExplorer.setNext(mCaptor); in setUp()
215 mTouchExplorer.onDoubleTapAndHold(sendEvent, sendEvent, 0); in testClick_afterCanceledDoubleTapAndHold_eventLocationIsCorrect()
298 mTouchExplorer.onAccessibilityEvent(a11yExitEvent); in testFlickCrossViews_clearStateAndExpectedEvents()
306 mTouchExplorer.onAccessibilityEvent(a11yExitEvent); in testFlickCrossViews_clearStateAndExpectedEvents()
337 mTouchExplorer.clearEvents(InputDevice.SOURCE_TOUCHSCREEN); in clearEventsWhenInTwoFingerMove_clearsStateAndSendsUp()
390 mTouchExplorer.setMultiFingerGesturesEnabled(true); in testCanceledGesture_shouldDoNothing()
391 mTouchExplorer.setTwoFingerPassthroughEnabled(true); in testCanceledGesture_shouldDoNothing()
418 mTouchExplorer.setMultiFingerGesturesEnabled(false); in testCanceledGesture_shouldDoNothing()
[all …]
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
DAccessibilityInputFilter.java181 private final SparseArray<TouchExplorer> mTouchExplorer = new SparseArray<>(0); field in AccessibilityInputFilter
672 mTouchExplorer.put(displayId, explorer); in enableFeaturesForDisplay()
779 final TouchExplorer explorer = mTouchExplorer.get(displayId); in disableFeaturesForDisplay()
782 mTouchExplorer.remove(displayId); in disableFeaturesForDisplay()
1168 if (region != null && mTouchExplorer.contains(displayId)) { in setGestureDetectionPassthroughRegion()
1169 mTouchExplorer.get(displayId).setGestureDetectionPassthroughRegion(region); in setGestureDetectionPassthroughRegion()
1174 if (region != null && mTouchExplorer.contains(displayId)) { in setTouchExplorationPassthroughRegion()
1175 mTouchExplorer.get(displayId).setTouchExplorationPassthroughRegion(region); in setTouchExplorationPassthroughRegion()
1180 if (mTouchExplorer.contains(displayId)) { in setServiceDetectsGesturesEnabled()
1181 mTouchExplorer.get(displayId).setServiceDetectsGestures(mode); in setServiceDetectsGesturesEnabled()
[all …]