Searched refs:mStrokeBuffer (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/services/accessibility/java/com/android/server/accessibility/ |
D | AccessibilityGestureDetector.java | 152 private final ArrayList<GesturePoint> mStrokeBuffer = new ArrayList<GesturePoint>(100); field in AccessibilityGestureDetector 221 mStrokeBuffer.clear(); in onMotionEvent() 222 mStrokeBuffer.add(new GesturePoint(x, y, time)); in onMotionEvent() 273 mStrokeBuffer.add(new GesturePoint(x, y, time)); in onMotionEvent() 283 mStrokeBuffer.add(new GesturePoint(x, y, time)); in onMotionEvent() 395 mStrokeBuffer.clear(); in cancelGesture() 400 gesture.addStroke(new GestureStroke(mStrokeBuffer)); in recognizeGesture()
|
/frameworks/base/core/java/android/gesture/ |
D | GestureOverlayView.java | 107 private final ArrayList<GesturePoint> mStrokeBuffer = new ArrayList<GesturePoint>(100); field in GestureOverlayView 197 return mStrokeBuffer; in getCurrentStroke() 468 mCurrentGesture.addStroke(new GestureStroke(mStrokeBuffer)); in cancelGesture() 486 mStrokeBuffer.clear(); in cancelGesture() 590 mStrokeBuffer.add(new GesturePoint(x, y, event.getEventTime())); in touchDown() 643 mStrokeBuffer.add(new GesturePoint(x, y, event.getEventTime())); in touchMove() 650 GestureUtils.computeOrientedBoundingBox(mStrokeBuffer); in touchMove() 691 mCurrentGesture.addStroke(new GestureStroke(mStrokeBuffer)); in touchUp() 711 mStrokeBuffer.clear(); in touchUp()
|