/frameworks/base/core/java/android/webkit/ |
D | OverScrollGlow.java | 160 final int scrollY = mHostView.getScrollY(); in drawEdgeGlows() local 168 canvas.translate(scrollX, mHostView.getVisibleTitleHeight() + Math.min(0, scrollY)); in drawEdgeGlows() 176 canvas.translate(-width + scrollX, Math.max(mHostView.computeMaxScrollY(), scrollY) in drawEdgeGlows() 187 canvas.translate(-height - scrollY, Math.min(0, scrollX)); in drawEdgeGlows() 196 canvas.translate(scrollY, in drawEdgeGlows()
|
D | ZoomManager.java | 581 int scrollY = mWebView.pinLocY(Math.round(sy)); in setZoomScale() 582 if(!mWebView.updateScrollCoordinates(scrollX, scrollY)) { in setZoomScale() 697 int scrollY = mWebView.getScrollY(); 698 if (scrollY < mWebView.getTitleHeight()) {
|
D | WebView.java | 3043 final int scrollY = mScrollY; in computeVerticalScrollRange() local 3045 if (scrollY < 0) { in computeVerticalScrollRange() 3046 range -= scrollY; in computeVerticalScrollRange() 3047 } else if (scrollY > overscrollBottom) { in computeVerticalScrollRange() 3048 range += scrollY - overscrollBottom; in computeVerticalScrollRange() 3077 protected void onOverScrolled(int scrollX, int scrollY, boolean clampedX, in onOverScrolled() argument 3082 nativeScrollLayer(mScrollingLayer, scrollX, scrollY); in onOverScrolled() 3084 mScrollingLayerRect.top = scrollY; in onOverScrolled() 3097 if (scrollY < 0 || scrollY > maxY) { in onOverScrolled() 3104 super.scrollTo(scrollX, scrollY); in onOverScrolled() [all …]
|
/frameworks/base/core/java/android/widget/ |
D | ScrollView.java | 399 final int scrollY = mScrollY; in inChild() local 401 return !(y < child.getTop() - scrollY in inChild() 402 || y >= child.getBottom() - scrollY in inChild() 705 protected void onOverScrolled(int scrollX, int scrollY, in onOverScrolled() argument 710 mScrollY = scrollY; in onOverScrolled() 716 super.scrollTo(scrollX, scrollY); in onOverScrolled() 1080 final int scrollY = mScrollY; in smoothScrollBy() local 1081 dy = Math.max(0, Math.min(scrollY + dy, maxY)) - scrollY; in smoothScrollBy() 1083 mScroller.startScroll(mScrollX, scrollY, 0, dy); in smoothScrollBy() 1121 final int scrollY = mScrollY; in computeVerticalScrollRange() local [all …]
|
D | AbsListView.java | 2080 final int scrollY = mScrollY; in dispatchDraw() local 2081 canvas.clipRect(scrollX + mPaddingLeft, scrollY + mPaddingTop, in dispatchDraw() 2083 scrollY + mBottom - mTop - mPaddingBottom); in dispatchDraw() 3366 protected void onOverScrolled(int scrollX, int scrollY, boolean clampedX, boolean clampedY) { in onOverScrolled() argument 3367 if (mScrollY != scrollY) { in onOverScrolled() 3368 onScrollChanged(mScrollX, scrollY, mScrollX, mScrollY); in onOverScrolled() 3369 mScrollY = scrollY; in onOverScrolled() 3400 final int scrollY = mScrollY; in draw() local 3408 Math.min(0, scrollY + mFirstPositionDistanceGuess)); in draw() 3423 Math.max(height, scrollY + mLastPositionDistanceGuess)); in draw() [all …]
|
D | ExpandableListView.java | 242 final int scrollY = mScrollY; in dispatchDraw() local 243 canvas.clipRect(scrollX + mPaddingLeft, scrollY + mPaddingTop, in dispatchDraw() 245 scrollY + mBottom - mTop - mPaddingBottom); in dispatchDraw()
|
D | ImageView.java | 899 final int scrollY = mScrollY; in onDraw() local 900 canvas.clipRect(scrollX + mPaddingLeft, scrollY + mPaddingTop, in onDraw() 902 scrollY + mBottom - mTop - mPaddingBottom); in onDraw()
|
D | ProgressBar.java | 908 final int scrollY = mScrollY + mPaddingTop; in invalidateDrawable() local 910 invalidate(dirty.left + scrollX, dirty.top + scrollY, in invalidateDrawable() 911 dirty.right + scrollX, dirty.bottom + scrollY); in invalidateDrawable()
|
D | PopupWindow.java | 1119 int scrollY = anchor.getScrollY(); in findDropDownPosition() local 1120 Rect r = new Rect(scrollX, scrollY, scrollX + mPopupWidth + xoff, in findDropDownPosition() 1121 scrollY + mPopupHeight + anchor.getHeight() + yoff); in findDropDownPosition()
|
D | ListView.java | 3120 final int scrollY = mScrollY; 3121 if (count > 0 && scrollY < 0) { 3124 bounds.top = scrollY; 3167 final int scrollY = mScrollY; 3170 bounds.top = scrollY; 3202 if (count > 0 && scrollY > 0) { 3206 bounds.bottom = absListBottom + scrollY;
|
D | HorizontalScrollView.java | 700 protected void onOverScrolled(int scrollX, int scrollY, in onOverScrolled() argument 705 mScrollY = scrollY; in onOverScrolled() 711 super.scrollTo(scrollX, scrollY); in onOverScrolled()
|
D | TextView.java | 4535 int scrollY = mScrollY; in invalidateDrawable() local 4548 scrollY += compoundPaddingTop + (vspace - drawables.mDrawableHeightLeft) / 2; in invalidateDrawable() 4555 scrollY += compoundPaddingTop + (vspace - drawables.mDrawableHeightRight) / 2; in invalidateDrawable() 4562 scrollY += mPaddingTop; in invalidateDrawable() 4569 scrollY += (mBottom - mTop - mPaddingBottom - drawables.mDrawableSizeBottom); in invalidateDrawable() 4573 invalidate(dirty.left + scrollX, dirty.top + scrollY, in invalidateDrawable() 4574 dirty.right + scrollX, dirty.bottom + scrollY); in invalidateDrawable() 4719 final int scrollY = mScrollY; in onDraw() local 4740 scrollY + compoundPaddingTop + in onDraw() 4751 scrollY + compoundPaddingTop + (vspace - dr.mDrawableHeightRight) / 2); in onDraw() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/ |
D | RecentsScrollViewPerformanceHelper.java | 118 int left, int right, int top, int bottom, int scrollX, int scrollY, in drawCallback() argument 123 if (scrollY < 0) { in drawCallback() 125 d.setBounds(0, scrollY, mScrollView.getWidth(), 0); in drawCallback() 129 if (scrollY + mScrollView.getHeight() > childHeight) { in drawCallback() 132 scrollY + mScrollView.getHeight()); in drawCallback()
|
/frameworks/support/v4/java/android/support/v4/view/accessibility/ |
D | AccessibilityRecordCompat.java | 58 public void setScrollY(Object record, int scrollY); in setScrollY() argument 244 public void setScrollY(Object record, int scrollY) { in setScrollY() argument 430 public void setScrollY(Object record, int scrollY) { in setScrollY() argument 431 AccessibilityRecordCompatIcs.setScrollY(record, scrollY); in setScrollY() 748 public void setScrollY(int scrollY) { in setScrollY() argument 749 IMPL.setScrollY(mRecord, scrollY); in setScrollY()
|
/frameworks/base/core/java/android/view/ |
D | GestureDetector.java | 531 final float scrollY = mLastMotionY - y; in onTouchEvent() local 540 handled = mListener.onScroll(mCurrentDownEvent, ev, scrollX, scrollY); in onTouchEvent() 551 } else if ((Math.abs(scrollX) >= 1) || (Math.abs(scrollY) >= 1)) { in onTouchEvent() 552 handled = mListener.onScroll(mCurrentDownEvent, ev, scrollX, scrollY); in onTouchEvent()
|
D | ViewRootImpl.java | 2041 int scrollY = 0; in scrollToRectOrFocus() local 2050 scrollY = mScrollY; in scrollToRectOrFocus() 2124 "Too tall; leaving scrollY=" + scrollY); in scrollToRectOrFocus() 2125 } else if ((mTempRect.top-scrollY) < vi.top) { in scrollToRectOrFocus() 2126 scrollY -= vi.top - (mTempRect.top-scrollY); in scrollToRectOrFocus() 2128 "Top covered; scrollY=" + scrollY); in scrollToRectOrFocus() 2129 } else if ((mTempRect.bottom-scrollY) in scrollToRectOrFocus() 2131 scrollY += (mTempRect.bottom-scrollY) in scrollToRectOrFocus() 2134 "Bottom covered; scrollY=" + scrollY); in scrollToRectOrFocus() 2142 if (scrollY != mScrollY) { in scrollToRectOrFocus() [all …]
|
D | View.java | 8404 final int scrollY = mScrollY; 8406 r.set(dirty.left - scrollX, dirty.top - scrollY, 8407 dirty.right - scrollX, dirty.bottom - scrollY); 8451 final int scrollY = mScrollY; 8453 tmpr.set(l - scrollX, t - scrollY, r - scrollX, b - scrollY); 9329 final int scrollY = mScrollY; 9345 top = scrollY + height - size - (mUserPaddingBottom & inside); 9374 top = scrollY + (mPaddingTop & inside); 9376 bottom = scrollY + height - (mUserPaddingBottom & inside); 10857 final int scrollY = mScrollY; [all …]
|
D | ViewGroup.java | 2834 final int scrollY = hasDisplayList ? 0 : sy; in drawChild() local 2835 canvas.saveLayerAlpha(scrollX, scrollY, scrollX + cr - cl, in drawChild() 2836 scrollY + cb - ct, multipliedAlpha, layerFlags); in drawChild() 2882 final int scrollY = hasDisplayList ? 0 : sy; in drawChild() local 2883 canvas.saveLayer(scrollX, scrollY, in drawChild() 2884 scrollX + cr - cl, scrollY + cb - ct, child.mLayerPaint, in drawChild()
|
/frameworks/support/v4/ics/android/support/v4/view/accessibility/ |
D | AccessibilityRecordCompatIcs.java | 196 public static void setScrollY(Object record, int scrollY) { in setScrollY() argument 197 ((AccessibilityRecord) record).setScrollY(scrollY); in setScrollY()
|
/frameworks/base/core/java/android/text/method/ |
D | Touch.java | 187 public DragState(float x, float y, int scrollX, int scrollY) { in DragState() argument 191 mScrollY = scrollY; in DragState()
|
/frameworks/base/core/java/android/view/accessibility/ |
D | AccessibilityRecord.java | 385 public void setScrollY(int scrollY) { in setScrollY() argument 387 mScrollY = scrollY; in setScrollY()
|
/frameworks/support/v4/java/android/support/v4/view/ |
D | ViewPager.java | 1496 final int scrollY = v.getScrollY(); in canScroll() local 1504 y + scrollY >= child.getTop() && y + scrollY < child.getBottom() && in canScroll() 1506 y + scrollY - child.getTop())) { in canScroll()
|
/frameworks/base/api/ |
D | current.txt | 819 field public static final int scrollY = 16842963; // 0x10100d3
|
D | 14.txt | 819 field public static final int scrollY = 16842963; // 0x10100d3
|