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.java464 TouchPoint[] touchPoints, int touchPointsSize) { in obtainMotionEvent() argument
465 if ((sPointerCoords == null) || (sPointerCoords.length < touchPointsSize)) { in obtainMotionEvent()
466 sPointerCoords = new MotionEvent.PointerCoords[touchPointsSize]; in obtainMotionEvent()
467 for (int i = 0; i < touchPointsSize; i++) { in obtainMotionEvent()
471 if ((sPointerProps == null) || (sPointerProps.length < touchPointsSize)) { in obtainMotionEvent()
472 sPointerProps = new MotionEvent.PointerProperties[touchPointsSize]; in obtainMotionEvent()
473 for (int i = 0; i < touchPointsSize; i++) { in obtainMotionEvent()
477 for (int i = 0; i < touchPointsSize; i++) { in obtainMotionEvent()
491 return MotionEvent.obtain(downTime, eventTime, action, touchPointsSize, in obtainMotionEvent()
497 private static int findPointByStrokeId(TouchPoint[] touchPoints, int touchPointsSize, in findPointByStrokeId() argument
[all …]