Lines Matching refs:other

246     public DisplayInfo(DisplayInfo other) {
247 copyFrom(other);
259 public boolean equals(DisplayInfo other) {
260 return other != null
261 && layerStack == other.layerStack
262 && flags == other.flags
263 && type == other.type
264 && Objects.equal(address, other.address)
265 && Objects.equal(uniqueId, other.uniqueId)
266 && appWidth == other.appWidth
267 && appHeight == other.appHeight
268 && smallestNominalAppWidth == other.smallestNominalAppWidth
269 && smallestNominalAppHeight == other.smallestNominalAppHeight
270 && largestNominalAppWidth == other.largestNominalAppWidth
271 && largestNominalAppHeight == other.largestNominalAppHeight
272 && logicalWidth == other.logicalWidth
273 && logicalHeight == other.logicalHeight
274 && overscanLeft == other.overscanLeft
275 && overscanTop == other.overscanTop
276 && overscanRight == other.overscanRight
277 && overscanBottom == other.overscanBottom
278 && rotation == other.rotation
279 && refreshRate == other.refreshRate
280 && logicalDensityDpi == other.logicalDensityDpi
281 && physicalXDpi == other.physicalXDpi
282 && physicalYDpi == other.physicalYDpi
283 && appVsyncOffsetNanos == other.appVsyncOffsetNanos
284 && presentationDeadlineNanos == other.presentationDeadlineNanos
285 && state == other.state
286 && ownerUid == other.ownerUid
287 && Objects.equal(ownerPackageName, other.ownerPackageName);
295 public void copyFrom(DisplayInfo other) {
296 layerStack = other.layerStack;
297 flags = other.flags;
298 type = other.type;
299 address = other.address;
300 name = other.name;
301 uniqueId = other.uniqueId;
302 appWidth = other.appWidth;
303 appHeight = other.appHeight;
304 smallestNominalAppWidth = other.smallestNominalAppWidth;
305 smallestNominalAppHeight = other.smallestNominalAppHeight;
306 largestNominalAppWidth = other.largestNominalAppWidth;
307 largestNominalAppHeight = other.largestNominalAppHeight;
308 logicalWidth = other.logicalWidth;
309 logicalHeight = other.logicalHeight;
310 overscanLeft = other.overscanLeft;
311 overscanTop = other.overscanTop;
312 overscanRight = other.overscanRight;
313 overscanBottom = other.overscanBottom;
314 rotation = other.rotation;
315 refreshRate = other.refreshRate;
317 other.supportedRefreshRates, other.supportedRefreshRates.length);
318 logicalDensityDpi = other.logicalDensityDpi;
319 physicalXDpi = other.physicalXDpi;
320 physicalYDpi = other.physicalYDpi;
321 appVsyncOffsetNanos = other.appVsyncOffsetNanos;
322 presentationDeadlineNanos = other.presentationDeadlineNanos;
323 state = other.state;
324 ownerUid = other.ownerUid;
325 ownerPackageName = other.ownerPackageName;