Searched refs:mTouchPoints (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DEventSenderImpl.java143 private List<TouchPoint> mTouchPoints; field in class:EventSenderImpl
345 mTouchPoints = null;
447 if (mTouchPoints == null) {
448 mTouchPoints = new LinkedList<TouchPoint>();
451 return mTouchPoints;
491 MotionEvent event = MotionEvent.obtain(mTouchPoints.get(0).getDownTime(),
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DWebViewEventSender.java35 mTouchPoints = new Vector<TouchPoint>();
174 final int numPoints = mTouchPoints.size();
184 pointerIds[i] = mTouchPoints.get(i).getId();
186 pointerCoords[i].x = mTouchPoints.get(i).getX();
187 pointerCoords[i].y = mTouchPoints.get(i).getY();
188 mTouchPoints.get(i).setDownTime(downTime);
199 final int numPoints = mTouchPoints.size();
208 TouchPoint tp = mTouchPoints.get(i);
210 pointerIds[numMovedPoints] = mTouchPoints.get(i).getId();
212 pointerCoords[numMovedPoints].x = mTouchPoints
411 private Vector<TouchPoint> mTouchPoints; field in class:WebViewEventSender
[all...]

Completed in 272 milliseconds