Searched refs:mStrokeBuffer (Results 1 – 3 of 3) sorted by relevance
50 private final ArrayList<PointF> mStrokeBuffer = new ArrayList<>(100); field in Swipe136 mStrokeBuffer.clear(); in clear()173 } else if (mStrokeBuffer.size() == 0) { in onMove()181 mStrokeBuffer.add(new PointF(mBaseX, mBaseY)); in onMove()206 mStrokeBuffer.add(new PointF(x, y)); in onMove()222 mStrokeBuffer.add(new PointF(x, y)); in onUp()246 if (mStrokeBuffer.size() < 2) { in recognizeGesture()258 PointF lastDelimiter = mStrokeBuffer.get(0); in recognizeGesture()267 for (int i = 1; i < mStrokeBuffer.size(); ++i) { in recognizeGesture()268 next = mStrokeBuffer.get(i); in recognizeGesture()
107 private final ArrayList<GesturePoint> mStrokeBuffer = new ArrayList<GesturePoint>(100); field in GestureOverlayView197 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()
16003 Landroid/gesture/GestureOverlayView;->mStrokeBuffer:Ljava/util/ArrayList;