Home
last modified time | relevance | path

Searched refs:newBottom (Results 1 – 4 of 4) sorted by relevance

/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationSection.java288 int newBottom; in updateBounds() local
291 newBottom = finalBottom; in updateBounds()
293 newBottom = (int) (lastView.getTranslationY() + lastView.getActualHeight() in updateBounds()
300 bottom = Math.max(bottom, Math.max(newBottom, minBottomPosition)); in updateBounds()
/aosp12/frameworks/base/core/java/android/view/
H A DWindowInsets.java1064 int newBottom = Math.max(0, insets.bottom - bottom); in insetInsets() local
1065 if (newLeft == left && newTop == top && newRight == right && newBottom == bottom) { in insetInsets()
1068 return Insets.of(newLeft, newTop, newRight, newBottom); in insetInsets()
/aosp12/frameworks/base/core/java/com/android/internal/widget/
H A DFloatingToolbar.java114 int newLeft, int newRight, int newTop, int newBottom,
116 mNewRect.set(newLeft, newRight, newTop, newBottom);
/aosp12/frameworks/base/core/java/android/widget/
H A DListView.java1186 int newBottom = sel.getBottom(); in moveSelection() local
1187 if (newBottom < childrenTop + 20) { in moveSelection()