Searched refs:lastX (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | KeyguardAffordanceHelper.java | 216 private void endMotion(boolean forceSnapBack, float lastX, float lastY) { in endMotion() argument 218 flingWithCurrentVelocity(forceSnapBack, lastX, lastY); in endMotion() 317 private void flingWithCurrentVelocity(boolean forceSnapBack, float lastX, float lastY) { in flingWithCurrentVelocity() argument 318 float vel = getCurrentVelocity(lastX, lastY); in flingWithCurrentVelocity() 473 private float getCurrentVelocity(float lastX, float lastY) { in getCurrentVelocity() argument 480 float bX = lastX - mInitialTouchX; in getCurrentVelocity()
|
D | ObservableScrollView.java | 148 void onOverscrolled(float lastX, float lastY, int amount); in onOverscrolled() argument
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | PointerLocationView.java | 298 float lastX = 0, lastY = 0; in onDraw() local 310 canvas.drawLine(lastX, lastY, x, y, mPathPaint); in onDraw() 312 canvas.drawPoint(lastX, lastY, paint); in onDraw() 315 lastX = x; in onDraw() 337 canvas.drawLine(lastX, lastY, lastX + xVel, lastY + yVel, mPaint); in onDraw() 355 canvas.drawLine(lastX, lastY, lastX + xVel, lastY + yVel, mPaint); in onDraw()
|
D | LockPatternView.java | 1118 float lastX = 0f; in onDraw() 1136 currentPath.moveTo(lastX, lastY); in onDraw() 1144 lastX = centerX; in onDraw() 1152 currentPath.moveTo(lastX, lastY); in onDraw() 1156 mInProgressX, mInProgressY, lastX, lastY) * 255f)); in onDraw() 1162 private float calculateLastSegmentAlpha(float x, float y, float lastX, float lastY) { 1163 float diffX = x - lastX;
|
/frameworks/base/libs/hwui/ |
D | PathTessellator.cpp | 922 sum += (x + lastX) * (y - lastY); in addPoint() 927 lastX = x; in addPoint() 944 double lastX = 0; member in android::uirenderer::ClockwiseEnforcer
|