Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DScrollView.java962 final int targetScrollY = Math.min(mScrollY + viewportHeight, getScrollRange()); in performAccessibilityActionInternal() local
963 if (targetScrollY != mScrollY) { in performAccessibilityActionInternal()
964 smoothScrollTo(0, targetScrollY); in performAccessibilityActionInternal()
971 final int targetScrollY = Math.max(mScrollY - viewportHeight, 0); in performAccessibilityActionInternal() local
972 if (targetScrollY != mScrollY) { in performAccessibilityActionInternal()
973 smoothScrollTo(0, targetScrollY); in performAccessibilityActionInternal()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayout.java4226 final int targetScrollY = Math.max(0,
4228 if (targetScrollY != mOwnScrollY) {
4230 targetScrollY - mOwnScrollY);