Home
last modified time | relevance | path

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

/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
DWebViewEventSender.java35 mTouchPoints = new Vector<TouchPoint>(); in WebViewEventSender()
208 TouchPoint tp = mTouchPoints.get(i); in touchMove()
253 TouchPoint tp = mTouchPoints.get(i); in touchEnd()
272 TouchPoint tp = mTouchPoints.get(i); in touchCancel()
295 TouchPoint tp = mTouchPoints.get(id); in cancelTouchPoint()
312 mTouchPoints.add(new TouchPoint(id, contentsToWindowX(x), contentsToWindowY(y))); in addTouchPoint()
316 TouchPoint tp = mTouchPoints.get(i); in updateTouchPoint()
343 TouchPoint tp = mTouchPoints.get(id); in releaseTouchPoint()
371 private class TouchPoint { class in WebViewEventSender
380 public TouchPoint(int id, int x, int y) { in TouchPoint() method in WebViewEventSender.TouchPoint
[all …]
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
DEventSenderImpl.java80 public static class TouchPoint { class in EventSenderImpl
88 public TouchPoint(int id, Point point) { in TouchPoint() method in EventSenderImpl.TouchPoint
143 private List<TouchPoint> mTouchPoints;
222 … new TouchPoint(id, createViewPointFromContentCoordinates(msg.arg1, msg.arg2)));
446 private List<TouchPoint> getTouchPoints() { in getTouchPoints()
448 mTouchPoints = new LinkedList<TouchPoint>(); in getTouchPoints()