Home
last modified time | relevance | path

Searched refs:previousY (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/java/android/gesture/
DGestureOverlayView.java614 final float previousY = mY; in touchMove() local
617 final float dy = Math.abs(y - previousY); in touchMove()
628 float cY = mCurveEndY = (y + previousY) / 2; in touchMove()
630 mPath.quadTo(previousX, previousY, cX, cY); in touchMove()
633 areaToRefresh.union((int) previousX - border, (int) previousY - border, in touchMove()
634 (int) previousX + border, (int) previousY + border); in touchMove()
/frameworks/native/include/input/
DInputTransport.h612 float previousY = getHistory(1)->getPointerById(id).getY(); in recentCoordinatesAreIdentical() local
613 if (currentX == previousX && currentY == previousY) { in recentCoordinatesAreIdentical()