Home
last modified time | relevance | path

Searched refs:FLAG_PASS_TO_USER (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/core/java/android/view/
DWindowManagerPolicyConstants.java36 int FLAG_PASS_TO_USER = 0x40000000; field
/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/
DMotionEventInjectorTest.java21 import static android.view.WindowManagerPolicyConstants.FLAG_PASS_TO_USER;
181 verify(next).onMotionEvent(mCaptor1.capture(), mCaptor2.capture(), eq(FLAG_PASS_TO_USER)); in testInjectEvents_shouldEmergeInOrderWithCorrectTiming()
183 eq(FLAG_PASS_TO_USER)); in testInjectEvents_shouldEmergeInOrderWithCorrectTiming()
191 argThat(allOf(mIsLineMiddle, hasRightDownTime)), eq(FLAG_PASS_TO_USER)); in testInjectEvents_shouldEmergeInOrderWithCorrectTiming()
199 argThat(allOf(mIsLineEnd, hasRightDownTime)), eq(FLAG_PASS_TO_USER)); in testInjectEvents_shouldEmergeInOrderWithCorrectTiming()
253 argThat(mIsLineStart), argThat(mIsLineStart), eq(FLAG_PASS_TO_USER)); in testInjectEvents_withRealGestureUnderway_shouldCancelRealAndPassInjected()
284 verify(next).onMotionEvent(mCaptor1.capture(), mCaptor2.capture(), eq(FLAG_PASS_TO_USER)); in testInjectEvents_withRealGestureFinished_shouldJustPassInjected()
286 argThat(mIsLineStart), argThat(mIsLineStart), eq(FLAG_PASS_TO_USER)); in testInjectEvents_withRealGestureFinished_shouldJustPassInjected()
DKeyEventDispatcherTest.java546 assertEquals(WindowManagerPolicy.FLAG_PASS_TO_USER, in assertOneKeyEventSentToFramework()
554 assertEquals(WindowManagerPolicy.FLAG_PASS_TO_USER, in assertTwoKeyEventsSentToFrameworkInOrder()
558 assertEquals(WindowManagerPolicy.FLAG_PASS_TO_USER, in assertTwoKeyEventsSentToFrameworkInOrder()
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
DMotionEventInjector.java149 sendMotionEventToNext(motionEvent, motionEvent, WindowManagerPolicy.FLAG_PASS_TO_USER); in handleMessage()
300 WindowManagerPolicy.FLAG_PASS_TO_USER); in cancelAnyGestureInProgress()
DKeyEventDispatcher.java270 int policyFlags = pendingEvent.policyFlags | WindowManagerPolicy.FLAG_PASS_TO_USER; in removeReferenceToPendingEventLocked()
DAccessibilityInputFilter.java207 if ((policyFlags & WindowManagerPolicy.FLAG_PASS_TO_USER) == 0) { in onInputEvent()
DTouchExplorer.java956 policyFlags |= WindowManagerPolicy.FLAG_PASS_TO_USER; in sendMotionEvent()