Searched refs:scrollBy (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/widget/scroll/
H A DRequestRectangleVisibleWithInternalScroll.java57 mTextBlob.scrollBy(0, scrollYofBlob);
/frameworks/base/core/java/android/widget/
H A DHorizontalScrollView.java1116 scrollBy(delta, 0);
1122 * Like {@link View#scrollBy}, but scroll smoothly instead of immediately.
1146 scrollBy(dx, dy);
1282 scrollBy(scrollDelta, 0);
1299 scrollBy(delta, 0);
1520 // we rely on the fact the View.scrollBy calls scrollTo.
H A DScrollView.java1092 scrollBy(0, delta);
1098 * Like {@link View#scrollBy}, but scroll smoothly instead of immediately.
1126 scrollBy(dx, dy);
1268 scrollBy(0, scrollDelta);
1285 scrollBy(0, delta);
1527 // we rely on the fact the View.scrollBy calls scrollTo.
H A DAbsListView.java4489 int scrollBy = 0;
4492 scrollBy = targetBottom - paddedBottom;
4495 scrollBy = targetTop - paddedTop;
4498 if (scrollBy == 0) {
4506 final int absScroll = Math.abs(scrollBy);
4508 if (scrollBy < 0 && boundBottom + absScroll > paddedBottom) {
4510 scrollBy = Math.max(0, boundBottom - paddedBottom);
4511 } else if (scrollBy > 0 && boundTop - absScroll < paddedTop) {
4513 scrollBy = Math.min(0, boundTop - paddedTop);
4517 smoothScrollBy(scrollBy, duratio
[all...]
H A DNumberPicker.java763 scrollBy(0, amountToScroll);
846 scrollBy(0, deltaMoveY);
993 scrollBy(0, currentScrollerY - mPreviousScrollerY);
1015 public void scrollBy(int x, int y) { method in class:NumberPicker
H A DTextView.java6537 scrollBy(dx, dy);
/frameworks/base/tests/TileBenchmark/src/com/test/tilebenchmark/
H A DProfiledWebView.java105 scrollBy(0, mSpeed);
/frameworks/base/core/java/android/webkit/
H A DZoomManager.java718 mWebView.getWebView().scrollBy(viewLeft, 0);
H A DWebViewClassic.java1687 mWebView.scrollBy(0, adjustedViewHeight);
1691 mWebView.scrollBy(0, -adjustedViewHeight);
3854 // helper to pin the scrollBy parameters (already in view coordinates)
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java1365 mScrollView.scrollBy(0, calculateOffsetFromBottom(line));
2179 mScrollView.scrollBy(0, (int)(getLineCount() * mChipHeight));
/frameworks/base/core/java/android/view/
H A DView.java529 * {@link #scrollBy(int, int)}, {@link #scrollTo(int, int)}, and
8429 * {@link #scrollBy(int, int)} or {@link #scrollTo(int, int)} having been
9935 public void scrollBy(int x, int y) { method in class:View
9955 * <p>This method is automatically invoked by {@link #scrollBy(int, int)}
9961 * @see #scrollBy(int, int)
10013 * @see #scrollBy(int, int)
10055 * @see #scrollBy(int, int)

Completed in 1128 milliseconds