Home
last modified time | relevance | path

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

/frameworks/base/services/accessibility/java/com/android/server/accessibility/
DMotionEventInjector.java446 TouchPoint[] touchPoints, int touchPointsSize) { in obtainMotionEvent() argument
447 if ((sPointerCoords == null) || (sPointerCoords.length < touchPointsSize)) { in obtainMotionEvent()
448 sPointerCoords = new MotionEvent.PointerCoords[touchPointsSize]; in obtainMotionEvent()
449 for (int i = 0; i < touchPointsSize; i++) { in obtainMotionEvent()
453 if ((sPointerProps == null) || (sPointerProps.length < touchPointsSize)) { in obtainMotionEvent()
454 sPointerProps = new MotionEvent.PointerProperties[touchPointsSize]; in obtainMotionEvent()
455 for (int i = 0; i < touchPointsSize; i++) { in obtainMotionEvent()
459 for (int i = 0; i < touchPointsSize; i++) { in obtainMotionEvent()
473 return MotionEvent.obtain(downTime, eventTime, action, touchPointsSize, in obtainMotionEvent()
479 private static int findPointByStrokeId(TouchPoint[] touchPoints, int touchPointsSize, in findPointByStrokeId() argument
[all …]