Searched refs:checkV (Results 1 – 6 of 6) sorted by relevance
/frameworks/support/wear/src/android/support/wear/widget/ |
D | SwipeDismissLayout.java | 430 protected boolean canScroll(View v, boolean checkV, float dx, float x, float y) { in canScroll() argument 450 return checkV && v.canScrollHorizontally((int) -dx); in canScroll()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | SwipeDismissLayout.java | 390 protected boolean canScroll(View v, boolean checkV, float dx, float x, float y) { 407 return checkV && v.canScrollHorizontally((int) -dx);
|
D | ViewPager.java | 2405 protected boolean canScroll(View v, boolean checkV, int dx, int x, int y) { 2424 return checkV && v.canScrollHorizontally(-dx);
|
/frameworks/support/core-ui/java/android/support/v4/widget/ |
D | ViewDragHelper.java | 921 protected boolean canScroll(View v, boolean checkV, int dx, int dy, int x, int y) { in canScroll() argument 941 return checkV && (v.canScrollHorizontally(-dx) || v.canScrollVertically(-dy)); in canScroll()
|
D | SlidingPaneLayout.java | 1228 protected boolean canScroll(View v, boolean checkV, int dx, int x, int y) { in canScroll() argument 1248 return checkV && v.canScrollHorizontally((isLayoutRtlSupport() ? dx : -dx)); in canScroll()
|
/frameworks/support/core-ui/java/android/support/v4/view/ |
D | ViewPager.java | 2710 protected boolean canScroll(View v, boolean checkV, int dx, int x, int y) { 2730 return checkV && v.canScrollHorizontally(-dx);
|