Home
last modified time | relevance | path

Searched refs:deltaP (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
DTaskStackViewScroller.java113 public float setDeltaStackScroll(float downP, float deltaP) { in setDeltaStackScroll() argument
114 float targetScroll = downP + deltaP; in setDeltaStackScroll()
118 mLastDeltaP = deltaP; in setDeltaStackScroll()
250 float deltaP = mLayoutAlgorithm.getDeltaPForY(mFlingDownY, mScroller.getCurrY()); in computeScroll() local
251 mFlingDownScrollP += setDeltaStackScroll(mFlingDownScrollP, deltaP); in computeScroll()
253 Log.d(TAG, "computeScroll: " + (mFlingDownScrollP + deltaP)); in computeScroll()
DTaskStackViewTouchHandler.java287 float deltaP = layoutAlgorithm.getDeltaPForY(mDownY, y); in handleTouchEvent() local
292 float curScrollP = mDownScrollP + deltaP; in handleTouchEvent()
DTaskStackLayoutAlgorithm.java1041 float deltaP = (float) (y - downY) / mStackRect.height() * in getDeltaPForY() local
1043 return -deltaP; in getDeltaPForY()