Home
last modified time | relevance | path

Searched refs:oldBounds (Results 1 – 8 of 8) sorted by relevance

/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DAppIconDragShadowBuilder.java52 Rect oldBounds = mDrawable.copyBounds(); in onDrawShadow() local
55 mDrawable.setBounds(oldBounds); in onDrawShadow()
/aosp12/packages/apps/TV/src/com/android/tv/menu/
H A DPlaybackProgressBar.java140 Rect oldBounds = drawable.getBounds(); in setProgressBound() local
142 if (!isEqualRect(oldBounds, 0, 0, 0, 0)) { in setProgressBound()
152 if (!isEqualRect(oldBounds, left, 0, right, height)) { in setProgressBound()
/aosp12/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawable.java246 Rect oldBounds = mBounds; in setBounds() local
248 if (oldBounds == ZERO_BOUNDS_RECT) { in setBounds()
249 oldBounds = mBounds = new Rect(); in setBounds()
252 if (oldBounds.left != left || oldBounds.top != top || in setBounds()
253 oldBounds.right != right || oldBounds.bottom != bottom) { in setBounds()
254 if (!oldBounds.isEmpty()) { in setBounds()
/aosp12/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/split/
H A DSplitLayout.java217 private void initDividerPosition(Rect oldBounds) { in initDividerPosition() argument
219 / (float) (isLandscape(oldBounds) ? oldBounds.width() : oldBounds.height()); in initDividerPosition()
/aosp12/frameworks/base/core/java/android/widget/
H A DAbsSeekBar.java732 final Rect oldBounds = thumb.getBounds();
733 top = oldBounds.top;
734 bottom = oldBounds.bottom;
/aosp12/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/phone/
H A DPipController.java712 private boolean onDisplayRotationChanged(Context context, Rect outBounds, Rect oldBounds, in onDisplayRotationChanged() argument
733 final Rect postChangeStackBounds = new Rect(oldBounds); in onDisplayRotationChanged()
/aosp12/frameworks/base/core/java/android/view/
H A DViewRootImpl.java9348 final Rect oldBounds = mTempRect; in handleWindowContentChangedEvent() local
9349 mAccessibilityFocusedVirtualView.getBoundsInScreen(oldBounds); in handleWindowContentChangedEvent()
9360 invalidateRectOnScreen(oldBounds); in handleWindowContentChangedEvent()
9364 if (!oldBounds.equals(newBounds)) { in handleWindowContentChangedEvent()
9365 oldBounds.union(newBounds); in handleWindowContentChangedEvent()
9366 invalidateRectOnScreen(oldBounds); in handleWindowContentChangedEvent()
/aosp12/frameworks/base/services/core/java/com/android/server/wm/
H A DDisplayContent.java2698 PrivacyIndicatorBounds oldBounds = mCurrentPrivacyIndicatorBounds; in updatePrivacyIndicatorBounds() local
2701 if (!Objects.equals(oldBounds, mCurrentPrivacyIndicatorBounds)) { in updatePrivacyIndicatorBounds()