Searched defs:canScroll (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
H A DSwipeDismissLayout.java208 if (dx != 0 && canScroll(this, false, dx, x, y)) {
340 protected boolean canScroll(View v, boolean checkV, float dx, float x, float y) { method in class:SwipeDismissLayout
350 canScroll(child, true, dx, x + scrollX - child.getLeft(),
H A DViewPager.java1871 canScroll(this, false, (int) dx, (int) x, (int) y)) {
2416 protected boolean canScroll(View v, boolean checkV, int dx, int x, int y) { method in class:ViewPager
2428 && canScroll(child, true, dx, x + scrollX - child.getLeft(),
2707 event.setScrollable(canScroll());
2721 info.setScrollable(canScroll());
2760 private boolean canScroll() { method in class:ViewPager
/frameworks/base/core/java/android/widget/
H A DHorizontalScrollView.java261 private boolean canScroll() { method in class:HorizontalScrollView
360 if (!canScroll()) {
H A DScrollView.java287 private boolean canScroll() { method in class:ScrollView
393 if (!canScroll()) {
/frameworks/support/v4/java/android/support/v4/widget/
H A DViewDragHelper.java915 protected boolean canScroll(View v, boolean checkV, int dx, int dy, int x, int y) { method in class:ViewDragHelper
928 canScroll(child, true, dx, dy, x + scrollX - child.getLeft(),
H A DNestedScrollView.java381 private boolean canScroll() { method in class:NestedScrollView
480 if (!canScroll()) {
H A DSlidingPaneLayout.java1223 protected boolean canScroll(View v, boolean checkV, int dx, int x, int y) { method in class:SlidingPaneLayout
1236 canScroll(child, true, dx, x + scrollX - child.getLeft(),
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.java1930 canScroll(this, false, (int) dx, (int) x, (int) y)) {
2538 protected boolean canScroll(View v, boolean checkV, int dx, int x, int y) { method in class:ViewPager
2551 canScroll(child, true, dx, x + scrollX - child.getLeft(),
2855 recordCompat.setScrollable(canScroll());
2868 info.setScrollable(canScroll());
2899 private boolean canScroll() { method in class:ViewPager.MyAccessibilityDelegate
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java1725 final boolean canScroll = canScrollHorizontal || canScrollVertical;
1726 dispatchNestedFling(velocityX, velocityY, canScroll);
1728 if (canScroll) {
6944 * @param canScroll true if the parent RecyclerView can scroll in this dimension
6949 boolean canScroll) {
6954 if (canScroll) {
6948 getChildMeasureSpec(int parentSize, int padding, int childDimension, boolean canScroll) argument

Completed in 185 milliseconds