Home
last modified time | relevance | path

Searched refs:boundBottom (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/android/view/
DDisplayCutout.java253 @Nullable Rect boundTop, @Nullable Rect boundRight, @Nullable Rect boundBottom) { in DisplayCutout() argument
254 this(safeInsets.toRect(), boundLeft, boundTop, boundRight, boundBottom, true); in DisplayCutout()
285 Rect boundBottom, boolean copyArguments) { in DisplayCutout() argument
287 mBounds = new Bounds(boundLeft, boundTop, boundRight, boundBottom, copyArguments); in DisplayCutout()
685 Rect boundBottom = null; in pathAndDisplayCutoutFromSpec() local
699 boundBottom = new Rect(); in pathAndDisplayCutoutFromSpec()
700 toRectAndAddToRegion(bottomPath, r, boundBottom); in pathAndDisplayCutoutFromSpec()
701 bottomInset = displayHeight - boundBottom.top; in pathAndDisplayCutoutFromSpec()
708 safeInset, null /* boundLeft */, boundTop, null /* boundRight */, boundBottom, in pathAndDisplayCutoutFromSpec()
/frameworks/base/core/tests/coretests/src/android/view/
DDisplayCutoutTest.java109 Rect boundBottom = new Rect(80, 190, 120, 200); in testExtractBoundsFromList_top_and_bottom() local
111 Arrays.asList(new Rect[]{boundTop, boundBottom})), in testExtractBoundsFromList_top_and_bottom()
112 equalTo(new Rect[]{ZERO_RECT, boundTop, ZERO_RECT, boundBottom})); in testExtractBoundsFromList_top_and_bottom()
/frameworks/base/core/java/android/widget/
DAbsListView.java7639 final int boundBottom = boundChild.getBottom();
7642 if (scrollBy < 0 && boundBottom + absScroll > paddedBottom) {
7644 scrollBy = Math.max(0, boundBottom - paddedBottom);