HomeSort by relevance Sort by last modified time
    Searched refs:getXVelocity (Results 1 - 25 of 85) sorted by null

1 2 3 4

  /frameworks/support/v4/java/android/support/v4/view/
VelocityTrackerCompat.java 30 public float getXVelocity(VelocityTracker tracker, int pointerId);
39 public float getXVelocity(VelocityTracker tracker, int pointerId) {
40 return tracker.getXVelocity();
53 public float getXVelocity(VelocityTracker tracker, int pointerId) {
54 return VelocityTrackerCompatHoneycomb.getXVelocity(tracker, pointerId);
77 * Call {@link VelocityTracker#getXVelocity(int)}.
79 * returns {@link VelocityTracker#getXVelocity()}.
81 public static float getXVelocity(VelocityTracker tracker, int pointerId) {
82 return IMPL.getXVelocity(tracker, pointerId);
GestureDetectorCompat.java 266 final float x1 = VelocityTrackerCompat.getXVelocity(mVelocityTracker, id1);
272 final float x = x1 * VelocityTrackerCompat.getXVelocity(mVelocityTracker, id2);
375 final float velocityX = VelocityTrackerCompat.getXVelocity(
  /frameworks/support/v4/honeycomb/android/support/v4/view/
VelocityTrackerCompatHoneycomb.java 25 public static float getXVelocity(VelocityTracker tracker, int pointerId) {
26 return tracker.getXVelocity(pointerId);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
VelocityTrackerInterface.java 28 public float getXVelocity();
PlatformVelocityTracker.java 58 public float getXVelocity() {
59 return mTracker.getXVelocity();
NoisyVelocityTracker.java 117 public float getXVelocity() {
KeyguardAffordanceHelper.java 437 return mVelocityTracker.getXVelocity();
  /frameworks/base/core/tests/coretests/src/android/view/
VelocityTest.java 52 assertFalse("Velocity should not be null", vt.getXVelocity() == 0.0f);
56 assertEquals(0.0f, vt.getXVelocity());
67 assertGreater(250.0f, vt.getXVelocity());
78 assertLower(250.0f, vt.getXVelocity());
91 assertEqualFuzzy(250.0f, vt.getXVelocity(), 4f);
102 assertEquals(0.0f, vt.getXVelocity());
118 assertEquals(1000.0f, vt.getXVelocity());
133 float firstX = vt.getXVelocity();
138 float secondX = vt.getXVelocity();
155 float firstX = vt.getXVelocity();
    [all...]
  /frameworks/base/core/java/android/view/
VelocityTracker.java 28 * {@link #computeCurrentVelocity(int)} and then call {@link #getXVelocity(int)}
143 * the velocity with {@link #getXVelocity()} and
162 public float getXVelocity() {
183 public float getXVelocity(int id) {
GestureDetector.java 497 final float x1 = mVelocityTracker.getXVelocity(id1);
503 final float x = x1 * mVelocityTracker.getXVelocity(id2);
606 final float velocityX = velocityTracker.getXVelocity(pointerId);
  /cts/tests/tests/view/src/android/view/cts/
VelocityTrackerTest.java 169 final float estimatedVx = mVelocityTracker.getXVelocity();
182 final float estimatedVx = mVelocityTracker.getXVelocity();
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
GmailDragHelper.java 169 final float xVelocity = mVelocityTracker.getXVelocity();
SwipeHelper.java 111 return mSwipeDirection == X ? vt.getXVelocity() :
130 vt.getXVelocity();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
SwipeHelper.java 119 return mSwipeDirection == X ? vt.getXVelocity() :
131 vt.getXVelocity();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
SwipeHelper.java 123 return mSwipeDirection == X ? vt.getXVelocity() :
135 vt.getXVelocity();
  /packages/apps/Dialer/src/com/android/dialer/list/
SwipeHelper.java 133 return mSwipeDirection == X ? vt.getXVelocity() :
152 vt.getXVelocity();
  /frameworks/base/core/java/com/android/internal/widget/
RotarySelector.java 549 (int) velocityTracker.getXVelocity():
569 (int) velocityTracker.getXVelocity():
PointerLocationView.java 607 ps.mXVelocity = mVelocity.getXVelocity(id);
611 ps.mAltXVelocity = mAltVelocity.getXVelocity(id);
    [all...]
  /packages/apps/Browser/src/com/android/browser/view/
ScrollerView.java 701 if (isOrthoMove(vtracker.getXVelocity(mActivePointerId),
704 : vtracker.getXVelocity()))) {
706 : vtracker.getXVelocity());
717 ? (int) velocityTracker.getXVelocity(mActivePointerId)
    [all...]
  /frameworks/support/v4/java/android/support/v4/widget/
ViewDragHelper.java 570 (int) VelocityTrackerCompat.getXVelocity(mVelocityTracker, mActivePointerId),
703 (int) VelocityTrackerCompat.getXVelocity(mVelocityTracker, mActivePointerId),
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/widget/
ViewDragHelper.java 570 (int) VelocityTrackerCompat.getXVelocity(mVelocityTracker, mActivePointerId),
706 (int) VelocityTrackerCompat.getXVelocity(mVelocityTracker, mActivePointerId),
    [all...]
  /packages/apps/Camera/src/com/android/camera/ui/
Switch.java 311 float xvel = mVelocityTracker.getXVelocity();
  /packages/apps/Camera2/src/com/android/camera/ui/
Switch.java 302 float xvel = mVelocityTracker.getXVelocity();
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
navier-stokes.js 331 this.getXVelocity = function(x, y) {
  /external/chromium_org/v8/benchmarks/
navier-stokes.js 313 this.getXVelocity = function(x, y) {

Completed in 892 milliseconds

1 2 3 4