Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/view/
DDisplayCutout.java158 private Bounds(Rect left, Rect top, Rect right, Rect bottom, boolean copyArguments) { in Bounds() argument
160 mRects[BOUNDS_POSITION_LEFT] = getCopyOrRef(left, copyArguments); in Bounds()
161 mRects[BOUNDS_POSITION_TOP] = getCopyOrRef(top, copyArguments); in Bounds()
162 mRects[BOUNDS_POSITION_RIGHT] = getCopyOrRef(right, copyArguments); in Bounds()
163 mRects[BOUNDS_POSITION_BOTTOM] = getCopyOrRef(bottom, copyArguments); in Bounds()
167 private Bounds(Rect[] rects, boolean copyArguments) { in Bounds() argument
172 if (copyArguments) { in Bounds()
434 boolean copyArguments) { in DisplayCutout() argument
435 mSafeInsets = getCopyOrRef(safeInsets, copyArguments); in DisplayCutout()
437 mBounds = new Bounds(boundLeft, boundTop, boundRight, boundBottom, copyArguments); in DisplayCutout()
[all …]