Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/app/
DPictureInPictureParams.java242 public void copyOnlySet(PictureInPictureParams otherArgs) { in copyOnlySet() argument
243 if (otherArgs.hasSetAspectRatio()) { in copyOnlySet()
244 mAspectRatio = otherArgs.mAspectRatio; in copyOnlySet()
246 if (otherArgs.hasSetActions()) { in copyOnlySet()
247 mUserActions = otherArgs.mUserActions; in copyOnlySet()
249 if (otherArgs.hasSourceBoundsHint()) { in copyOnlySet()
250 mSourceRectHint = new Rect(otherArgs.getSourceRectHint()); in copyOnlySet()
252 if (otherArgs.mAutoEnterEnabled != null) { in copyOnlySet()
253 mAutoEnterEnabled = otherArgs.mAutoEnterEnabled; in copyOnlySet()
255 if (otherArgs.mSeamlessResizeEnabled != null) { in copyOnlySet()
[all …]