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

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PanelView.java 307 float vel = 0, yVel = 0, xVel = 0;
314 yVel = mVelocityTracker.getYVelocity();
315 negative = yVel < 0;
325 vel = (float)Math.hypot(yVel, xVel);
349 xVel, yVel,
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
UniverseBackground.java 418 float yVel = mVelocityTracker.getYVelocity();
419 boolean negative = yVel < 0;
429 float vel = (float)Math.hypot(yVel, xVel);
438 xVel, yVel,
  /frameworks/base/core/java/com/android/internal/widget/
PointerLocationView.java 314 float yVel = ps.mYVelocity * (1000 / 60);
315 canvas.drawLine(lastX, lastY, lastX + xVel, lastY + yVel, mPaint);
332 yVel = ps.mAltYVelocity * (1000 / 60);
333 canvas.drawLine(lastX, lastY, lastX + xVel, lastY + yVel, mPaint);

Completed in 1334 milliseconds