/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
D | NonInterceptingScrollView.java | 44 if (canScrollVertically(1)) { in onTouchEvent() 50 } else if (!canScrollVertically(-1)) { in onTouchEvent() 68 if (canScrollVertically(1)) { in onInterceptTouchEvent() 79 if (yDiff < -mTouchSlop && !canScrollVertically(1)) { in onInterceptTouchEvent() 90 public boolean canScrollVertically(int direction) { in canScrollVertically() method in NonInterceptingScrollView 91 return mScrollEnabled && super.canScrollVertically(direction); in canScrollVertically()
|
D | QSScrollLayout.java | 69 if (!canScrollVertically(1) && !canScrollVertically(-1)) { in onInterceptTouchEvent() 78 if (!canScrollVertically(1) && !canScrollVertically(-1)) { in onTouchEvent() 103 && canScrollVertically(1)) { in shouldIntercept() 155 mIsInOverScroll = (!canScrollVertically(1) && displacement < 0) || in onDrag() 156 (!canScrollVertically(-1) && displacement > 0); in onDrag()
|
/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/widget/ |
D | ActionBarShadowControllerTest.java | 73 when(mRecyclerView.canScrollVertically(-1)).thenReturn(false); in attachToView_shouldAddScrollWatcherAndUpdateActionBar() 82 when(mScrollView.canScrollVertically(-1)).thenReturn(false); in attachToView_scrollView_shouldAddScrollWatcherAndUpdateActionBar() 93 when(mRecyclerView.canScrollVertically(-1)).thenReturn(false); in attachToView_customViewAsActionBar_shouldUpdateElevationOnScroll() 99 when(mRecyclerView.canScrollVertically(-1)).thenReturn(true); in attachToView_customViewAsActionBar_shouldUpdateElevationOnScroll()
|
/frameworks/base/core/java/com/android/internal/app/ |
D | ChooserGridLayoutManager.java | 78 public boolean canScrollVertically() { in canScrollVertically() method in ChooserGridLayoutManager 79 return mVerticalScrollEnabled && super.canScrollVertically(); in canScrollVertically()
|
D | AlertController.java | 772 upIndicator.setVisibility(v.canScrollVertically(-1) ? View.VISIBLE : View.INVISIBLE); in manageScrollIndicators() 775 downIndicator.setVisibility(v.canScrollVertically(1) ? View.VISIBLE : View.INVISIBLE); in manageScrollIndicators()
|
/frameworks/base/core/java/com/android/internal/view/ |
D | ScrollCaptureViewHelper.java | 72 && (view.canScrollVertically(UP) || view.canScrollVertically(DOWN)); in onAcceptSession()
|
D | ScrollCaptureInternal.java | 87 if (!(view.canScrollVertically(DOWN) || view.canScrollVertically(UP))) { in detectScrollingType() 123 if (view.canScrollVertically(UP)) { in detectScrollingType()
|
/frameworks/base/packages/SettingsLib/ActionBarShadow/src/com/android/settingslib/widget/ |
D | ActionBarShadowController.java | 117 final boolean shouldShowShadow = view.canScrollVertically(-1); in updateDropShadow()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | RecyclerView.java | 1573 final boolean canScrollVertical = mLayout.canScrollVertically(); in scrollBy() 1799 return mLayout.canScrollVertically() ? mLayout.computeVerticalScrollOffset(mState) : 0; in computeVerticalScrollOffset() 1823 return mLayout.canScrollVertically() ? mLayout.computeVerticalScrollExtent(mState) : 0; in computeVerticalScrollExtent() 1846 return mLayout.canScrollVertically() ? mLayout.computeVerticalScrollRange(mState) : 0; in computeVerticalScrollRange() 1972 if (!mLayout.canScrollVertically()) { in smoothScrollBy() 2004 final boolean canScrollVertical = mLayout.canScrollVertically(); in fling() 2289 if (mLayout.canScrollVertically()) { in focusSearch() 2653 final boolean canScrollVertically = mLayout.canScrollVertically(); in onInterceptTouchEvent() 2684 if (canScrollVertically) { in onInterceptTouchEvent() 2714 if (canScrollVertically && Math.abs(dy) > mTouchSlop) { in onInterceptTouchEvent() [all …]
|
D | LinearSmoothScroller.java | 303 if (layoutManager == null || !layoutManager.canScrollVertically()) { in calculateDyToMakeVisible()
|
D | LinearLayoutManager.java | 288 public boolean canScrollVertically() { in canScrollVertically() method in LinearLayoutManager
|
/frameworks/base/core/java/com/android/internal/widget/helper/ |
D | ItemTouchHelper.java | 731 if (lm.canScrollVertically()) { in scrollIfNecessary() 929 } else if (absDy > absDx && lm.canScrollVertically()) { in findSwipedView() 1911 if (layoutManager.canScrollVertically()) { in onMoved()
|
/frameworks/base/core/java/android/widget/ |
D | ScrollView.java | 617 if (getScrollY() == 0 && !canScrollVertically(1)) { in onInterceptTouchEvent()
|
/frameworks/base/core/java/android/view/ |
D | View.java | 6931 final boolean canScrollVertically = 6933 if (isVerticalScrollBarEnabled() && !isVerticalScrollBarHidden() && canScrollVertically) { 19839 public boolean canScrollVertically(int direction) { in canScrollVertically() method in View 19880 final boolean canScrollUp = canScrollVertically(-1); in onDrawScrollIndicators() 19888 final boolean canScrollDown = canScrollVertically(1); in onDrawScrollIndicators()
|
/frameworks/base/boot/ |
D | boot-image-profile.txt | 17520 HSPLandroid/view/View;->canScrollVertically(I)Z+]Landroid/view/View;missing_types
|
/frameworks/base/core/api/ |
D | current.txt | 48547 method public boolean canScrollVertically(int);
|
/frameworks/opt/setupwizard/tools/docs/ |
D | android-22.txt | 33302 method public boolean canScrollVertically(int);
|
/frameworks/base/config/ |
D | boot-image-profile.txt | 17569 HSPLandroid/view/View;->canScrollVertically(I)Z+]Landroid/view/View;missing_types
|