Searched refs:boundBottom (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/apct-tests/perftests/core/src/android/view/ |
D | CutoutSpecificationBenchmark.java | 98 Rect boundBottom = null; in oldMethodParsingSpec() local 160 boundBottom = new Rect(); in oldMethodParsingSpec() 161 toRectAndAddToRegion(bottomPath, r, boundBottom); in oldMethodParsingSpec() 162 bottomInset = displayHeight - boundBottom.top; in oldMethodParsingSpec()
|
/frameworks/base/core/java/android/view/ |
D | DisplayCutout.java | 247 @Nullable Rect boundTop, @Nullable Rect boundRight, @Nullable Rect boundBottom) { in DisplayCutout() argument 248 this(safeInsets.toRect(), Insets.NONE, boundLeft, boundTop, boundRight, boundBottom, true); in DisplayCutout() 270 @Nullable Rect boundTop, @Nullable Rect boundRight, @Nullable Rect boundBottom, in DisplayCutout() argument 272 this(safeInsets.toRect(), waterfallInsets, boundLeft, boundTop, boundRight, boundBottom, in DisplayCutout() 304 Rect boundTop, Rect boundRight, Rect boundBottom, boolean copyArguments) { in DisplayCutout() argument 307 mBounds = new Bounds(boundLeft, boundTop, boundRight, boundBottom, copyArguments); in DisplayCutout() 736 final Rect boundBottom = cutoutSpec.getBottomBound(); in pathAndDisplayCutoutFromSpec() local 749 boundRight, boundBottom, false /* copyArguments */); in pathAndDisplayCutoutFromSpec()
|
/frameworks/base/core/tests/coretests/src/android/view/ |
D | DisplayCutoutTest.java | 111 Rect boundBottom = new Rect(80, 190, 120, 200); in testExtractBoundsFromList_top_and_bottom() local 113 Arrays.asList(new Rect[]{boundTop, boundBottom})), in testExtractBoundsFromList_top_and_bottom() 114 equalTo(new Rect[]{ZERO_RECT, boundTop, ZERO_RECT, boundBottom})); in testExtractBoundsFromList_top_and_bottom()
|
/frameworks/base/core/java/android/widget/ |
D | AbsListView.java | 7621 final int boundBottom = boundChild.getBottom(); 7624 if (scrollBy < 0 && boundBottom + absScroll > paddedBottom) { 7626 scrollBy = Math.max(0, boundBottom - paddedBottom);
|