Lines Matching refs:other

259     public DisplayInfo(DisplayInfo other) {
260 copyFrom(other);
272 public boolean equals(DisplayInfo other) {
273 return other != null
274 && layerStack == other.layerStack
275 && flags == other.flags
276 && type == other.type
277 && Objects.equal(address, other.address)
278 && Objects.equal(uniqueId, other.uniqueId)
279 && appWidth == other.appWidth
280 && appHeight == other.appHeight
281 && smallestNominalAppWidth == other.smallestNominalAppWidth
282 && smallestNominalAppHeight == other.smallestNominalAppHeight
283 && largestNominalAppWidth == other.largestNominalAppWidth
284 && largestNominalAppHeight == other.largestNominalAppHeight
285 && logicalWidth == other.logicalWidth
286 && logicalHeight == other.logicalHeight
287 && overscanLeft == other.overscanLeft
288 && overscanTop == other.overscanTop
289 && overscanRight == other.overscanRight
290 && overscanBottom == other.overscanBottom
291 && rotation == other.rotation
292 && modeId == other.modeId
293 && defaultModeId == other.defaultModeId
294 && colorTransformId == other.colorTransformId
295 && defaultColorTransformId == other.defaultColorTransformId
296 && Objects.equal(hdrCapabilities, other.hdrCapabilities)
297 && logicalDensityDpi == other.logicalDensityDpi
298 && physicalXDpi == other.physicalXDpi
299 && physicalYDpi == other.physicalYDpi
300 && appVsyncOffsetNanos == other.appVsyncOffsetNanos
301 && presentationDeadlineNanos == other.presentationDeadlineNanos
302 && state == other.state
303 && ownerUid == other.ownerUid
304 && Objects.equal(ownerPackageName, other.ownerPackageName);
312 public void copyFrom(DisplayInfo other) {
313 layerStack = other.layerStack;
314 flags = other.flags;
315 type = other.type;
316 address = other.address;
317 name = other.name;
318 uniqueId = other.uniqueId;
319 appWidth = other.appWidth;
320 appHeight = other.appHeight;
321 smallestNominalAppWidth = other.smallestNominalAppWidth;
322 smallestNominalAppHeight = other.smallestNominalAppHeight;
323 largestNominalAppWidth = other.largestNominalAppWidth;
324 largestNominalAppHeight = other.largestNominalAppHeight;
325 logicalWidth = other.logicalWidth;
326 logicalHeight = other.logicalHeight;
327 overscanLeft = other.overscanLeft;
328 overscanTop = other.overscanTop;
329 overscanRight = other.overscanRight;
330 overscanBottom = other.overscanBottom;
331 rotation = other.rotation;
332 modeId = other.modeId;
333 defaultModeId = other.defaultModeId;
334 supportedModes = Arrays.copyOf(other.supportedModes, other.supportedModes.length);
335 colorTransformId = other.colorTransformId;
336 defaultColorTransformId = other.defaultColorTransformId;
338 other.supportedColorTransforms, other.supportedColorTransforms.length);
339 hdrCapabilities = other.hdrCapabilities;
340 logicalDensityDpi = other.logicalDensityDpi;
341 physicalXDpi = other.physicalXDpi;
342 physicalYDpi = other.physicalYDpi;
343 appVsyncOffsetNanos = other.appVsyncOffsetNanos;
344 presentationDeadlineNanos = other.presentationDeadlineNanos;
345 state = other.state;
346 ownerUid = other.ownerUid;
347 ownerPackageName = other.ownerPackageName;