Searched refs:mChildToScrollTo (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/core/tests/coretests/src/android/widget/scroll/ |
D | RequestRectangleVisibleTest.java | 46 private View mChildToScrollTo; field in RequestRectangleVisibleTest 66 mChildToScrollTo = a.findViewById(R.id.childToMakeVisible); in setUp() 81 assertNotNull(mChildToScrollTo); in testPreconditions() 102 ViewAsserts.assertOffScreenBelow(mScrollView, mChildToScrollTo); in testScrollToOffScreenRectangleFromTop() 110 ViewAsserts.assertOnScreen(mScrollView, mChildToScrollTo); in testScrollToOffScreenRectangleFromTop() 112 mScrollView, mChildToScrollTo, in testScrollToOffScreenRectangleFromTop() 115 - mChildToScrollTo.getHeight() in testScrollToOffScreenRectangleFromTop() 143 ViewAsserts.assertOffScreenAbove(mScrollView, mChildToScrollTo); in testScrollToOffScreenRectangleFromBottom() 150 ViewAsserts.assertOnScreen(mScrollView, mChildToScrollTo); in testScrollToOffScreenRectangleFromBottom() 152 mScrollView, mChildToScrollTo, 0, mScrollView.getVerticalFadingEdgeLength()); in testScrollToOffScreenRectangleFromBottom()
|
/frameworks/base/core/java/android/widget/ |
D | ScrollView.java | 136 private View mChildToScrollTo = null; field in ScrollView 1517 mChildToScrollTo = child; in scrollToDescendant() 1615 mChildToScrollTo = focused; in requestChildFocus() 1692 if (mChildToScrollTo != null && isViewDescendantOf(mChildToScrollTo, this)) { in onLayout() 1693 scrollToDescendant(mChildToScrollTo); in onLayout() 1695 mChildToScrollTo = null; in onLayout()
|
D | HorizontalScrollView.java | 126 private View mChildToScrollTo = null; field in HorizontalScrollView 1573 mChildToScrollTo = focused; in requestChildFocus() 1651 if (mChildToScrollTo != null && isViewDescendantOf(mChildToScrollTo, this)) { in onLayout() 1652 scrollToChild(mChildToScrollTo); in onLayout() 1654 mChildToScrollTo = null; in onLayout()
|