Searched refs:mStrokeBuffer (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/services/accessibility/java/com/android/server/accessibility/ |
D | AccessibilityGestureDetector.java | 192 private final ArrayList<GesturePoint> mStrokeBuffer = new ArrayList<GesturePoint>(100); field in AccessibilityGestureDetector 286 mStrokeBuffer.clear(); in onMotionEvent() 287 mStrokeBuffer.add(new GesturePoint(x, y, time)); in onMotionEvent() 338 mStrokeBuffer.add(new GesturePoint(x, y, time)); in onMotionEvent() 351 mStrokeBuffer.add(new GesturePoint(x, y, time)); in onMotionEvent() 465 mStrokeBuffer.clear(); in cancelGesture() 478 if (mStrokeBuffer.size() < 2) { in recognizeGesture() 489 PointF lastDelimiter = new PointF(mStrokeBuffer.get(0).x, mStrokeBuffer.get(0).y); in recognizeGesture() 498 for (int i = 1; i < mStrokeBuffer.size(); ++i) { in recognizeGesture() 499 next = new PointF(mStrokeBuffer.get(i).x, mStrokeBuffer.get(i).y); 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()
|
/frameworks/base/config/ |
D | hiddenapi-greylist-max-o.txt | 18890 Landroid/gesture/GestureOverlayView;->mStrokeBuffer:Ljava/util/ArrayList;
|