Lines Matching refs:other

69      * and that no other application should be able to interact with it.
108 * other sources. The name may be localized and displayed to the user.
240 public boolean equals(DisplayDeviceInfo other) {
241 return other != null
242 && Objects.equal(name, other.name)
243 && Objects.equal(uniqueId, other.uniqueId)
244 && width == other.width
245 && height == other.height
246 && refreshRate == other.refreshRate
247 && Arrays.equals(supportedRefreshRates, other.supportedRefreshRates)
248 && densityDpi == other.densityDpi
249 && xDpi == other.xDpi
250 && yDpi == other.yDpi
251 && appVsyncOffsetNanos == other.appVsyncOffsetNanos
252 && presentationDeadlineNanos == other.presentationDeadlineNanos
253 && flags == other.flags
254 && touch == other.touch
255 && rotation == other.rotation
256 && type == other.type
257 && Objects.equal(address, other.address)
258 && state == other.state
259 && ownerUid == other.ownerUid
260 && Objects.equal(ownerPackageName, other.ownerPackageName);
268 public void copyFrom(DisplayDeviceInfo other) {
269 name = other.name;
270 uniqueId = other.uniqueId;
271 width = other.width;
272 height = other.height;
273 refreshRate = other.refreshRate;
274 supportedRefreshRates = other.supportedRefreshRates;
275 densityDpi = other.densityDpi;
276 xDpi = other.xDpi;
277 yDpi = other.yDpi;
278 appVsyncOffsetNanos = other.appVsyncOffsetNanos;
279 presentationDeadlineNanos = other.presentationDeadlineNanos;
280 flags = other.flags;
281 touch = other.touch;
282 rotation = other.rotation;
283 type = other.type;
284 address = other.address;
285 state = other.state;
286 ownerUid = other.ownerUid;
287 ownerPackageName = other.ownerPackageName;