Searched refs:mStrokeBuffer (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/java/android/gesture/ |
D | GestureOverlayView.java | 106 private final ArrayList<GesturePoint> mStrokeBuffer = new ArrayList<GesturePoint>(100); field in GestureOverlayView 191 return mStrokeBuffer; in getCurrentStroke() 460 mCurrentGesture.addStroke(new GestureStroke(mStrokeBuffer)); in cancelGesture() 478 mStrokeBuffer.clear(); in cancelGesture() 581 mStrokeBuffer.add(new GesturePoint(x, y, event.getEventTime())); in touchDown() 634 mStrokeBuffer.add(new GesturePoint(x, y, event.getEventTime())); in touchMove() 641 GestureUtils.computeOrientedBoundingBox(mStrokeBuffer); in touchMove() 682 mCurrentGesture.addStroke(new GestureStroke(mStrokeBuffer)); in touchUp() 702 mStrokeBuffer.clear(); in touchUp()
|
/frameworks/base/services/java/com/android/server/accessibility/ |
D | TouchExplorer.java | 180 private final ArrayList<GesturePoint> mStrokeBuffer = new ArrayList<GesturePoint>(100); field in TouchExplorer 262 mStrokeBuffer.clear(); in clear() 486 mStrokeBuffer.clear(); in handleMotionEventStateTouchExploring() 526 mStrokeBuffer.clear(); in handleMotionEventStateTouchExploring() 702 mStrokeBuffer.add(new GesturePoint(x, y, event.getEventTime())); in handleMotionEventGestureDetecting() 712 mStrokeBuffer.add(new GesturePoint(x, y, event.getEventTime())); in handleMotionEventGestureDetecting() 718 mStrokeBuffer.add(new GesturePoint(x, y, event.getEventTime())); in handleMotionEventGestureDetecting() 721 gesture.addStroke(new GestureStroke(mStrokeBuffer)); in handleMotionEventGestureDetecting() 740 mStrokeBuffer.clear(); in handleMotionEventGestureDetecting()
|