Home
last modified time | relevance | path

Searched refs:existingBounds (Results 1 – 2 of 2) sorted by relevance

/aosp14/frameworks/base/services/core/java/com/android/server/wm/
H A DConfigurationContainer.java403 final Rect existingBounds = getRequestedOverrideMaxBounds(); in diffRequestedOverrideMaxBounds() local
405 if (bounds == null || existingBounds.left != bounds.left in diffRequestedOverrideMaxBounds()
406 || existingBounds.top != bounds.top) { in diffRequestedOverrideMaxBounds()
410 if (bounds == null || existingBounds.width() != bounds.width() in diffRequestedOverrideMaxBounds()
411 || existingBounds.height() != bounds.height()) { in diffRequestedOverrideMaxBounds()
425 final Rect existingBounds = getRequestedOverrideBounds(); in diffRequestedOverrideBounds() local
427 if (bounds == null || existingBounds.left != bounds.left in diffRequestedOverrideBounds()
428 || existingBounds.top != bounds.top) { in diffRequestedOverrideBounds()
432 if (bounds == null || existingBounds.width() != bounds.width() in diffRequestedOverrideBounds()
433 || existingBounds.height() != bounds.height()) { in diffRequestedOverrideBounds()
/aosp14/frameworks/base/core/java/android/transition/
H A DTransitionUtils.java133 Rect existingBounds = drawable.getBounds(); in createDrawableBitmap() local
134 int left = existingBounds.left; in createDrawableBitmap()
135 int top = existingBounds.top; in createDrawableBitmap()
136 int right = existingBounds.right; in createDrawableBitmap()
137 int bottom = existingBounds.bottom; in createDrawableBitmap()