Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationSection.java287 int newBottom; in updateBounds() local
290 newBottom = finalBottom; in updateBounds()
292 newBottom = (int) (lastView.getTranslationY() + lastView.getActualHeight() in updateBounds()
299 bottom = Math.max(bottom, Math.max(newBottom, minBottomPosition)); in updateBounds()
/frameworks/base/core/java/com/android/internal/widget/floatingtoolbar/
DFloatingToolbar.java65 int newLeft, int newRight, int newTop, int newBottom,
67 mNewRect.set(newLeft, newRight, newTop, newBottom);
/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/
DViewHierarchyAnimator.kt626 newBottom: Int, in <lambda>()
636 val startBottom = if (ignorePreviousValues) newBottom else previousBottom in <lambda>()
658 Hotspot.CENTER -> (newTop + newBottom) / 2 in <lambda>()
666 Hotspot.BOTTOM_LEFT -> max(startBottom, newBottom) in <lambda>()
682 Hotspot.CENTER -> (newTop + newBottom) / 2 in <lambda>()
685 Hotspot.BOTTOM_LEFT -> max(startBottom, newBottom) in <lambda>()
687 Hotspot.RIGHT -> newBottom in <lambda>()
/frameworks/base/core/java/android/view/
DWindowInsets.java1078 int newBottom = Math.max(0, insets.bottom - bottom); in insetInsets() local
1079 if (newLeft == left && newTop == top && newRight == right && newBottom == bottom) { in insetInsets()
1082 return Insets.of(newLeft, newTop, newRight, newBottom); in insetInsets()
/frameworks/base/core/java/android/widget/
DListView.java1186 int newBottom = sel.getBottom(); in moveSelection() local
1187 if (newBottom < childrenTop + 20) { in moveSelection()