Searched refs:copyArguments (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/core/java/android/view/ |
D | DisplayCutout.java | 147 private Bounds(Rect left, Rect top, Rect right, Rect bottom, boolean copyArguments) { in Bounds() argument 149 mRects[BOUNDS_POSITION_LEFT] = getCopyOrRef(left, copyArguments); in Bounds() 150 mRects[BOUNDS_POSITION_TOP] = getCopyOrRef(top, copyArguments); in Bounds() 151 mRects[BOUNDS_POSITION_RIGHT] = getCopyOrRef(right, copyArguments); in Bounds() 152 mRects[BOUNDS_POSITION_BOTTOM] = getCopyOrRef(bottom, copyArguments); in Bounds() 156 private Bounds(Rect[] rects, boolean copyArguments) { in Bounds() argument 161 if (copyArguments) { in Bounds() 304 Rect boundTop, Rect boundRight, Rect boundBottom, boolean copyArguments) { in DisplayCutout() argument 305 mSafeInsets = getCopyOrRef(safeInsets, copyArguments); in DisplayCutout() 307 mBounds = new Bounds(boundLeft, boundTop, boundRight, boundBottom, copyArguments); in DisplayCutout() [all …]
|