Searched refs:FlingGestureAnimator (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/web/resources/
H A DcalendarPicker.js1157 function FlingGestureAnimator(initialVelocity, initialValue) { class
1193 FlingGestureAnimator.prototype = Object.create(Animator.prototype);
1197 FlingGestureAnimator._P0 = -5707.62;
1198 FlingGestureAnimator._P1 = 0.172;
1199 FlingGestureAnimator._P2 = 0.0037;
1204 FlingGestureAnimator.prototype._valueAtTime = function(t) {
1205 return FlingGestureAnimator._P0 * Math.exp(-FlingGestureAnimator._P2 * t) - FlingGestureAnimator._P1 * t - FlingGestureAnimator
[all...]

Completed in 80 milliseconds