Searched refs:getDecoratedStart (Results 1 – 11 of 11) sorted by relevance
/aosp12/frameworks/base/core/java/com/android/internal/widget/ |
H A D | ScrollbarHelper.java | 48 - orientation.getDecoratedStart(startChild)); in computeScrollOffset() 54 - orientation.getDecoratedStart(startChild))); in computeScrollOffset() 72 - orientation.getDecoratedStart(startChild); in computeScrollExtent() 92 - orientation.getDecoratedStart(startChild); in computeScrollRange()
|
H A D | LinearLayoutManager.java | 528 current = mOrientationHelper.getDecoratedStart(existing) 831 final int startGap = mOrientationHelper.getDecoratedStart(child) 848 : mOrientationHelper.getDecoratedStart(child); 1172 mLayoutState.mOffset = mOrientationHelper.getDecoratedStart(child); in updateLayoutState() 1173 scrollingOffset = -mOrientationHelper.getDecoratedStart(child) in updateLayoutState() 1418 if (mOrientationHelper.getDecoratedStart(child) < limit in recycleViewsFromEnd() 1428 if (mOrientationHelper.getDecoratedStart(child) < limit in recycleViewsFromEnd() 1937 + mOrientationHelper.getDecoratedStart(child)); in logChildren() 1963 int screenLoc = mOrientationHelper.getDecoratedStart(child); in validateChildOrder() 1978 int screenLoc = mOrientationHelper.getDecoratedStart(child); in validateChildOrder() [all …]
|
H A D | OrientationHelper.java | 84 public abstract int getDecoratedStart(View view); in getDecoratedStart() method in OrientationHelper 296 public int getDecoratedStart(View view) { in createHorizontalHelper() method in OrientationHelper 394 public int getDecoratedStart(View view) {
|
H A D | GridLayoutManager.java | 433 } else if (mOrientationHelper.getDecoratedStart(view) >= boundsEnd in findReferenceChild()
|
/aosp12/packages/apps/Car/libs/car-ui-lib/car-ui-lib/src/main/java/com/android/car/ui/recyclerview/ |
H A D | CarUiSnapHelper.java | 130 && orientationHelper.getDecoratedStart(firstChild) < 0 in findSnapView() 155 int startOffset = orientationHelper.getDecoratedStart(child); in findSnapView() 186 final int childTop = helper.getDecoratedStart(targetView); in distanceToTopMargin() 219 int viewStart = helper.getDecoratedStart(view); in getPercentageVisible() 371 int start = Math.min(helper.getDecoratedStart(minPosView), in computeDistancePerChild() 372 helper.getDecoratedStart(maxPosView)); in computeDistancePerChild() 396 return orientationHelper.getDecoratedStart(firstChild) in isAtStart()
|
H A D | DefaultScrollBar.java | 404 - orientationHelper.getDecoratedStart(currentPosView)), orientationHelper); in pageUp() 473 if (orientationHelper.getDecoratedStart(child) in pageDown() 474 <= orientationHelper.getDecoratedStart(currentPosView)) { in pageDown() 479 if (orientationHelper.getDecoratedStart(child) in pageDown() 487 scrollDistance = orientationHelper.getDecoratedStart(child) in pageDown()
|
/aosp12/packages/apps/Car/libs/car-ui-lib/referencedesign/plugin/src/main/java/com/chassis/car/ui/plugin/recyclerview/ |
H A D | SnapHelper.java | 130 && orientationHelper.getDecoratedStart(firstChild) < 0 in findSnapView() 155 int startOffset = orientationHelper.getDecoratedStart(child); in findSnapView() 186 final int childTop = helper.getDecoratedStart(targetView); in distanceToTopMargin() 219 int viewStart = helper.getDecoratedStart(view); in getPercentageVisible() 371 int start = Math.min(helper.getDecoratedStart(minPosView), in computeDistancePerChild() 372 helper.getDecoratedStart(maxPosView)); in computeDistancePerChild() 396 return orientationHelper.getDecoratedStart(firstChild) in isAtStart()
|
H A D | DefaultScrollBar.java | 397 - orientationHelper.getDecoratedStart(currentPosView)), orientationHelper); in pageUp() 466 if (orientationHelper.getDecoratedStart(child) in pageDown() 467 <= orientationHelper.getDecoratedStart(currentPosView)) { in pageDown() 472 if (orientationHelper.getDecoratedStart(child) in pageDown() 480 scrollDistance = orientationHelper.getDecoratedStart(child) in pageDown()
|
/aosp12/packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/widget/ |
H A D | PagedSnapHelper.java | 92 final int childTop = helper.getDecoratedStart(targetView); in distanceToTopMargin() 147 int viewStart = helper.getDecoratedStart(view); in getPercentageVisible() 247 return orientationHelper.getDecoratedStart(firstChild) in isAtStart()
|
/aosp12/packages/apps/Car/libs/car-ui-lib/car-ui-lib/src/androidTest/java/com/android/car/ui/recyclerview/ |
H A D | DelegatingContentLimitingAdapterTest.java | 109 boolean isAtStart = orientationHelper.getDecoratedStart(firstChild) in setMaxItem_noScrolling_noContentLimiting() 139 boolean isAtStart = orientationHelper.getDecoratedStart(firstChild) in setMaxItem_noScrolling()
|
H A D | CarUiRecyclerViewTest.java | 840 orientationHelper.getDecoratedStart(longItem), in testPageDownScrollsOverLongItem() 846 assertThat(orientationHelper.getDecoratedStart(longItem), in testPageDownScrollsOverLongItem() 864 orientationHelper.getDecoratedStart(longItem), in testPageDownScrollsOverLongItem() 952 if (orientationHelper.getStartAfterPadding() - orientationHelper.getDecoratedStart(longItem) in testPageUpScrollsOverLongItem() 955 assertThat(orientationHelper.getDecoratedStart(longItem), in testPageUpScrollsOverLongItem() 958 int topBeforeClick = orientationHelper.getDecoratedStart(longItem); in testPageUpScrollsOverLongItem() 1010 orientationHelper.getDecoratedStart(longItem), in testPageDownScrollsOverVeryLongItem() 1016 assertThat(orientationHelper.getDecoratedStart(longItem), in testPageDownScrollsOverVeryLongItem()
|