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