Lines Matching defs:other

188      * be disabled, but other measures can take place, for instance the
209 * composited on top of each-other into the surface. A pre-multiplied
582 + "Set the other properties and make the surface visible within "
603 public SurfaceControl(SurfaceControl other) {
604 mName = other.mName;
605 mWidth = other.mWidth;
606 mHeight = other.mHeight;
607 mNativeObject = other.mNativeObject;
608 other.mCloseGuard.close();
609 other.mNativeObject = 0;
1002 public PhysicalDisplayInfo(PhysicalDisplayInfo other) {
1003 copyFrom(other);
1011 public boolean equals(PhysicalDisplayInfo other) {
1012 return other != null
1013 && width == other.width
1014 && height == other.height
1015 && refreshRate == other.refreshRate
1016 && density == other.density
1017 && xDpi == other.xDpi
1018 && yDpi == other.yDpi
1019 && secure == other.secure
1020 && appVsyncOffsetNanos == other.appVsyncOffsetNanos
1021 && presentationDeadlineNanos == other.presentationDeadlineNanos;
1029 public void copyFrom(PhysicalDisplayInfo other) {
1030 width = other.width;
1031 height = other.height;
1032 refreshRate = other.refreshRate;
1033 density = other.density;
1034 xDpi = other.xDpi;
1035 yDpi = other.yDpi;
1036 secure = other.secure;
1037 appVsyncOffsetNanos = other.appVsyncOffsetNanos;
1038 presentationDeadlineNanos = other.presentationDeadlineNanos;
1673 * Merge the other transaction into this transaction, clearing the
1674 * other transaction as if it had been applied.
1676 public Transaction merge(Transaction other) {
1677 mResizedSurfaces.putAll(other.mResizedSurfaces);
1678 other.mResizedSurfaces.clear();
1679 nativeMergeTransaction(mNativeObject, other.mNativeObject);