Home | History | Annotate | Download | only in widget

Lines Matching defs:scrollDelta

905             int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect);
906 doScrollX(scrollDelta);
910 int scrollDelta = maxJump;
912 if (direction == View.FOCUS_LEFT && getScrollX() < scrollDelta) {
913 scrollDelta = getScrollX();
921 scrollDelta = daRight - screenRight;
924 if (scrollDelta == 0) {
927 doScrollX(direction == View.FOCUS_RIGHT ? scrollDelta : -scrollDelta);
1136 int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect);
1138 if (scrollDelta != 0) {
1139 scrollBy(scrollDelta, 0);
1322 int scrollDelta = computeScrollDeltaToGetChildRectOnScreen(mTempRect);
1323 doScrollX(scrollDelta);