Home
last modified time | relevance | path

Searched refs:mBoundingRects (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/android/view/
DInsetsSource.java134 private @Nullable Rect[] mBoundingRects; field in InsetsSource
164 mBoundingRects = other.mBoundingRects != null in InsetsSource()
165 ? other.mBoundingRects.clone() in InsetsSource()
177 mBoundingRects = other.mBoundingRects != null in set()
178 ? other.mBoundingRects.clone() in set()
229 mBoundingRects = rects != null ? rects.clone() : null; in setBoundingRects()
265 return mBoundingRects; in getBoundingRects()
362 if (mBoundingRects == null) { in calculateBoundingRects()
385 for (final Rect boundingRect : mBoundingRects) { in calculateBoundingRects()
402 for (final Rect boundingRect : mBoundingRects) { in calculateBoundingRects()
[all …]
DInsetsFrameProvider.java117 private Rect[] mBoundingRects = null; field in InsetsFrameProvider
219 mBoundingRects = boundingRects == null ? null : boundingRects.clone(); in setBoundingRects()
228 return mBoundingRects; in getBoundingRects()
257 if (mBoundingRects != null) { in toString()
258 sb.append(", mBoundingRects=").append(Arrays.toString(mBoundingRects)); in toString()
286 mBoundingRects = in.createTypedArray(Rect.CREATOR); in InsetsFrameProvider()
298 out.writeTypedArray(mBoundingRects, flags); in writeToParcel()
320 && Arrays.equals(mBoundingRects, other.mBoundingRects); in equals()
327 mMinimalInsetsSizeInDisplayCutoutSafe, Arrays.hashCode(mBoundingRects)); in hashCode()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/windowdecor/
DWindowDecoration.java751 private final Rect[] mBoundingRects; field in WindowDecoration.WindowDecorationInsets
758 mBoundingRects = boundingRects; in WindowDecorationInsets()
762 wct.addInsetsSource(mToken, mOwner, INDEX, captionBar(), mFrame, mBoundingRects); in addOrUpdate()
764 mBoundingRects); in addOrUpdate()
778 && Objects.deepEquals(mBoundingRects, that.mBoundingRects); in equals()
783 return Objects.hash(mToken, mOwner, mFrame, Arrays.hashCode(mBoundingRects)); in hashCode()