Searched refs:checkV (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
H A DSwipeDismissLayout.java340 * @param checkV Whether the view v passed should itself be checked for scrollability (true),
347 protected boolean canScroll(View v, boolean checkV, float dx, float x, float y) { argument
364 return checkV && v.canScrollHorizontally((int) -dx);
H A DViewPager.java2398 * @param checkV Whether the view v passed should itself be checked for scrollability (true),
2405 protected boolean canScroll(View v, boolean checkV, int dx, int x, int y) { argument
2424 return checkV && v.canScrollHorizontally(-dx);
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DViewDragHelper.java914 * @param checkV Whether the view v passed should itself be checked for scrollability (true),
922 protected boolean canScroll(View v, boolean checkV, int dx, int dy, int x, int y) { argument
942 return checkV && (ViewCompat.canScrollHorizontally(v, -dx)
H A DSlidingPaneLayout.java1225 * @param checkV Whether the view v passed should itself be checked for scrollability (true),
1232 protected boolean canScroll(View v, boolean checkV, int dx, int x, int y) { argument
1252 return checkV && ViewCompat.canScrollHorizontally(v, (isLayoutRtlSupport() ? dx : -dx));
/frameworks/support/core-ui/java/android/support/v4/view/
H A DViewPager.java2732 * @param checkV Whether the view v passed should itself be checked for scrollability (true),
2739 protected boolean canScroll(View v, boolean checkV, int dx, int x, int y) { argument
2759 return checkV && ViewCompat.canScrollHorizontally(v, -dx);

Completed in 97 milliseconds