Searched refs:newRight (Results 1 – 3 of 3) sorted by relevance
/aosp14/frameworks/base/core/java/com/android/internal/widget/floatingtoolbar/ |
H A D | FloatingToolbar.java | 65 int newLeft, int newRight, int newTop, int newBottom, 67 mNewRect.set(newLeft, newRight, newTop, newBottom);
|
/aosp14/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/ |
H A D | ViewHierarchyAnimator.kt | 644 newRight: Int, 654 val startRight = if (ignorePreviousValues) newRight else previousRight 665 Hotspot.CENTER -> (newLeft + newRight) / 2 673 Hotspot.BOTTOM_RIGHT -> max(startRight, newRight) 689 Hotspot.CENTER -> (newLeft + newRight) / 2 692 Hotspot.BOTTOM_RIGHT -> max(startRight, newRight) 694 Hotspot.BOTTOM -> newRight
|
/aosp14/frameworks/base/core/java/android/view/ |
H A D | WindowInsets.java | 1103 int newRight = Math.max(0, insets.right - right); in insetInsets() local 1105 if (newLeft == left && newTop == top && newRight == right && newBottom == bottom) { in insetInsets() 1108 return Insets.of(newLeft, newTop, newRight, newBottom); in insetInsets()
|