Searched defs:vel (Results 1 - 5 of 5) sorted by relevance

/packages/apps/Launcher2/src/com/android/launcher2/
H A DDeleteDropTarget.java258 DragObject d, PointF vel, ViewConfiguration config) {
266 float velocity = Math.abs(vel.length());
269 int offsetX = (int) (offsetY / (vel.y / vel.x));
323 public FlingAlongVectorAnimatorUpdateListener(DragLayer dragLayer, PointF vel, Rect from, argument
326 mVelocity = vel;
361 DragObject d, PointF vel, final long startTime, final int duration,
366 return new FlingAlongVectorAnimatorUpdateListener(dragLayer, vel, from, startTime,
370 public void onFlingToDelete(final DragObject d, int x, int y, PointF vel) { argument
415 updateCb = createFlingToTrashAnimatorListener(dragLayer, d, vel, confi
257 createFlingToTrashAnimatorListener(final DragLayer dragLayer, DragObject d, PointF vel, ViewConfiguration config) argument
360 createFlingAlongVectorAnimatorListener(final DragLayer dragLayer, DragObject d, PointF vel, final long startTime, final int duration, ViewConfiguration config) argument
[all...]
H A DDragController.java631 PointF vel = new PointF(mVelocityTracker.getXVelocity(),
634 float theta = (float) Math.acos(((vel.x * upVec.x) + (vel.y * upVec.y)) /
635 (vel.length() * upVec.length()));
637 return vel;
643 private void dropOnFlingToDeleteTarget(float x, float y, PointF vel) { argument
664 vel);
/packages/apps/Launcher3/src/com/android/launcher3/
H A DDeleteDropTarget.java361 DragObject d, PointF vel, ViewConfiguration config) {
369 float velocity = Math.abs(vel.length());
372 int offsetX = (int) (offsetY / (vel.y / vel.x));
426 public FlingAlongVectorAnimatorUpdateListener(DragLayer dragLayer, PointF vel, Rect from, argument
429 mVelocity = vel;
464 DragObject d, PointF vel, final long startTime, final int duration,
469 return new FlingAlongVectorAnimatorUpdateListener(dragLayer, vel, from, startTime,
473 public void onFlingToDelete(final DragObject d, int x, int y, PointF vel) { argument
518 updateCb = createFlingToTrashAnimatorListener(dragLayer, d, vel, confi
360 createFlingToTrashAnimatorListener(final DragLayer dragLayer, DragObject d, PointF vel, ViewConfiguration config) argument
463 createFlingAlongVectorAnimatorListener(final DragLayer dragLayer, DragObject d, PointF vel, final long startTime, final int duration, ViewConfiguration config) argument
[all...]
H A DDragController.java632 PointF vel = new PointF(mVelocityTracker.getXVelocity(),
635 float theta = (float) Math.acos(((vel.x * upVec.x) + (vel.y * upVec.y)) /
636 (vel.length() * upVec.length()));
638 return vel;
644 private void dropOnFlingToDeleteTarget(float x, float y, PointF vel) { argument
665 vel);
H A DPagedView.java2514 PointF vel = new PointF(mVelocityTracker.getXVelocity(),
2517 float theta = (float) Math.acos(((vel.x * upVec.x) + (vel.y * upVec.y)) /
2518 (vel.length() * upVec.length()));
2520 return vel;
2540 public FlingAlongVectorAnimatorUpdateListener(View dragView, PointF vel, Rect from, argument
2543 mVelocity = vel;
2654 public void onFlingToDelete(PointF vel) { argument
2687 AnimatorUpdateListener updateCb = new FlingAlongVectorAnimatorUpdateListener(dragView, vel,

Completed in 91 milliseconds