Searched defs:vel (Results 1 - 2 of 2) 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.java617 PointF vel = new PointF(mVelocityTracker.getXVelocity(),
620 float theta = (float) Math.acos(((vel.x * upVec.x) + (vel.y * upVec.y)) /
621 (vel.length() * upVec.length()));
623 return vel;
629 private void dropOnFlingToDeleteTarget(float x, float y, PointF vel) { argument
650 vel);

Completed in 55 milliseconds