HomeSort by relevance Sort by last modified time
    Searched defs:yvel (Results 1 - 5 of 5) sorted by null

  /frameworks/base/include/androidfw/
VelocityTracker.h 216 float ypos, yvel, yaccel; member in struct:android::IntegratingVelocityTrackerStrategy::State
  /frameworks/base/libs/androidfw/
VelocityTracker.cpp 750 state.yvel = 0;
767 float yvel = (ypos - state.ypos) / dt; local
770 state.yvel = yvel;
776 state.yvel += (yvel - state.yvel) * alpha;
779 float yaccel = (yvel - state.yvel) / dt;
789 state.yvel += (state.yaccel * dt) * alpha
    [all...]
  /frameworks/support/v4/java/android/support/v4/widget/
ViewDragHelper.java 199 * @param yvel Y velocity of the pointer as it left the screen in pixels per second.
201 public void onViewReleased(View releasedChild, float xvel, float yvel) {}
573 * @param yvel Vertical velocity
576 private boolean forceSettleCapturedViewAt(int finalLeft, int finalTop, int xvel, int yvel) {
589 final int duration = computeSettleDuration(mCapturedView, dx, dy, xvel, yvel);
596 private int computeSettleDuration(View child, int dx, int dy, int xvel, int yvel) {
598 yvel = clampMag(yvel, (int) mMinVelocity, (int) mMaxVelocity);
602 final int absYVel = Math.abs(yvel);
608 final float yweight = yvel != 0 ? (float) absYVel / addedVel
1359 final float yvel = clampMag( local
    [all...]
  /developers/samples/android/input/gestures/BasicGestureDetect/BasicGestureDetect/libs/
android-support-v4.jar 
  /development/samples/training/NavigationDrawer/libs/
android-support-v4.jar 

Completed in 74 milliseconds