HomeSort by relevance Sort by last modified time
    Searched refs:mStrokeBuffer (Results 1 - 2 of 2) sorted by null

  /frameworks/base/services/accessibility/java/com/android/server/accessibility/
AccessibilityGestureDetector.java 192 private final ArrayList<GesturePoint> mStrokeBuffer = new ArrayList<GesturePoint>(100);
271 mStrokeBuffer.clear();
272 mStrokeBuffer.add(new GesturePoint(x, y, time));
323 mStrokeBuffer.add(new GesturePoint(x, y, time));
336 mStrokeBuffer.add(new GesturePoint(x, y, time));
450 mStrokeBuffer.clear();
454 * Looks at the sequence of motions in mStrokeBuffer, classifies the gesture, then calls
463 if (mStrokeBuffer.size() < 2) {
467 // Look at mStrokeBuffer and extract 2 line segments, delimited by near-perpendicular
474 PointF lastDelimiter = new PointF(mStrokeBuffer.get(0).x, mStrokeBuffer.get(0).y)
    [all...]
  /frameworks/base/core/java/android/gesture/
GestureOverlayView.java 107 private final ArrayList<GesturePoint> mStrokeBuffer = new ArrayList<GesturePoint>(100);
197 return mStrokeBuffer;
468 mCurrentGesture.addStroke(new GestureStroke(mStrokeBuffer));
486 mStrokeBuffer.clear();
590 mStrokeBuffer.add(new GesturePoint(x, y, event.getEventTime()));
643 mStrokeBuffer.add(new GesturePoint(x, y, event.getEventTime()));
650 GestureUtils.computeOrientedBoundingBox(mStrokeBuffer);
691 mCurrentGesture.addStroke(new GestureStroke(mStrokeBuffer));
711 mStrokeBuffer.clear();

Completed in 320 milliseconds