Home
last modified time | relevance | path

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

/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.kt657 newRight: Int, in <lambda>()
667 val startRight = if (ignorePreviousValues) newRight else previousRight in <lambda>()
678 Hotspot.CENTER -> (newLeft + newRight) / 2 in <lambda>()
686 Hotspot.BOTTOM_RIGHT -> max(startRight, newRight) in <lambda>()
702 Hotspot.CENTER -> (newLeft + newRight) / 2 in <lambda>()
705 Hotspot.BOTTOM_RIGHT -> max(startRight, newRight) in <lambda>()
707 Hotspot.BOTTOM -> newRight in <lambda>()
/frameworks/base/core/java/android/view/
DWindowInsets.java1274 int newRight = Math.max(0, insets.right - right); in insetInsets() local
1276 if (newLeft == left && newTop == top && newRight == right && newBottom == bottom) { in insetInsets()
1279 return Insets.of(newLeft, newTop, newRight, newBottom); in insetInsets()
/frameworks/av/services/audioflinger/
DEffects.cpp2628 uint32_t newRight = *right; in setVolume_l() local
2663 mRightVolume = newRight; in setVolume_l()
2667 mEffects[ctrlIdx]->setVolume_l(&newLeft, &newRight, in setVolume_l()
2670 mNewRightVolume = newRight; in setVolume_l()
2673 newRight); in setVolume_l()
2679 uint32_t rVol = newRight; in setVolume_l()
2700 *right = newRight; in setVolume_l()
/frameworks/base/services/core/java/com/android/server/wallpaper/
DWallpaperCropper.java294 int newRight = newLeft + crop.height(); in getAdjustedCrop() local
297 Rect rotatedCrop = new Rect(newLeft, newTop, newRight, newBottom); in getAdjustedCrop()