Home
last modified time | relevance | path

Searched refs:touchHandler (Results 1 – 3 of 3) sorted by relevance

/packages/modules/Virtualization/android/TerminalApp/assets/js/
Dtouch_to_mouse_handler.js21 function touchHandler(event) { function
74 document.addEventListener('touchstart', touchHandler, eventOptions);
75 document.addEventListener('touchmove', touchHandler, eventOptions);
76 document.addEventListener('touchend', touchHandler, eventOptions);
77 document.addEventListener('touchcancel', touchHandler, eventOptions);
78 document.addEventListener('contextmenu', touchHandler, eventOptions);
/packages/apps/Dialer/java/com/android/incallui/answer/impl/answermethod/
DTwoButtonMethod.java57 @Nullable private FlingUpDownTouchHandler touchHandler; field in TwoButtonMethod
98 touchHandler = in onCreateView()
129 touchHandler.setFlingEnabled(false); in onCreateView()
137 if (touchHandler != null) { in onDestroyView()
138 touchHandler.detach(); in onDestroyView()
139 touchHandler = null; in onDestroyView()
DFlingUpDownMethod.java148 private FlingUpDownTouchHandler touchHandler; field in FlingUpDownMethod
241 touchHandler = FlingUpDownTouchHandler.attach(view, this, falsingManager); in onCreateView()
264 if (touchHandler != null) { in onDestroyView()
265 touchHandler.detach(); in onDestroyView()
266 touchHandler = null; in onDestroyView()
299 touchHandler.setTouchEnabled(false); in onMoveFinish()
493 contactPuckBackground.setActivated(touchHandler.isTracking()); in setPuckTouchState()