Home
last modified time | relevance | path

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

/packages/apps/Browser/src/com/android/browser/
DNavTabScroller.java70 int mPullValue; field in NavTabScroller
486 if (delta == 0 && mPullValue == 0) return; in onPull()
487 if (delta == 0 && mPullValue != 0) { in onPull()
490 View child = mContentView.getChildAt((mPullValue < 0) in onPull()
507 mPullValue = 0; in onPull()
509 if (mPullValue == 0) { in onPull()
512 mPullValue += delta; in onPull()
515 int oscroll = Math.abs(mPullValue); in onPull()
516 int factor = (mPullValue <= 0) ? 1 : -1; in onPull()
518 View child = mContentView.getChildAt((mPullValue < 0) in onPull()