Searched refs:copyArguments (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/core/java/android/view/ |
D | DisplayCutout.java | 185 private Bounds(Rect left, Rect top, Rect right, Rect bottom, boolean copyArguments) { in Bounds() argument 187 mRects[BOUNDS_POSITION_LEFT] = getCopyOrRef(left, copyArguments); in Bounds() 188 mRects[BOUNDS_POSITION_TOP] = getCopyOrRef(top, copyArguments); in Bounds() 189 mRects[BOUNDS_POSITION_RIGHT] = getCopyOrRef(right, copyArguments); in Bounds() 190 mRects[BOUNDS_POSITION_BOTTOM] = getCopyOrRef(bottom, copyArguments); in Bounds() 194 private Bounds(Rect[] rects, boolean copyArguments) { in Bounds() argument 199 if (copyArguments) { in Bounds() 549 boolean copyArguments) { in DisplayCutout() argument 550 this(getCopyOrRef(safeInsets, copyArguments), waterfallInsets, in DisplayCutout() 551 new Bounds(boundLeft, boundTop, boundRight, boundBottom, copyArguments), info, in DisplayCutout() [all …]
|