Lines Matching defs:other

49  * frequent usage and clients should consider it first before other more complicated alternatives.
431 * <p> If the OutputConfiguration was constructed by other constructors, the added
509 * @param other Another {@link OutputConfiguration} instance to be copied.
513 public OutputConfiguration(@NonNull OutputConfiguration other) {
514 if (other == null) {
518 this.mSurfaces = other.mSurfaces;
519 this.mRotation = other.mRotation;
520 this.mSurfaceGroupId = other.mSurfaceGroupId;
521 this.mSurfaceType = other.mSurfaceType;
522 this.mConfiguredDataspace = other.mConfiguredDataspace;
523 this.mConfiguredFormat = other.mConfiguredFormat;
524 this.mConfiguredSize = other.mConfiguredSize;
525 this.mConfiguredGenerationId = other.mConfiguredGenerationId;
526 this.mIsDeferredConfig = other.mIsDeferredConfig;
527 this.mIsShared = other.mIsShared;
528 this.mPhysicalCameraId = other.mPhysicalCameraId;
674 * and all other configuration parameters are equal. </p>
685 final OutputConfiguration other = (OutputConfiguration) obj;
686 if (mRotation != other.mRotation ||
687 !mConfiguredSize.equals(other.mConfiguredSize) ||
688 mConfiguredFormat != other.mConfiguredFormat ||
689 mSurfaceGroupId != other.mSurfaceGroupId ||
690 mSurfaceType != other.mSurfaceType ||
691 mIsDeferredConfig != other.mIsDeferredConfig ||
692 mIsShared != other.mIsShared ||
693 mConfiguredFormat != other.mConfiguredFormat ||
694 mConfiguredDataspace != other.mConfiguredDataspace ||
695 mConfiguredGenerationId != other.mConfiguredGenerationId)
698 int minLen = Math.min(mSurfaces.size(), other.mSurfaces.size());
700 if (mSurfaces.get(i) != other.mSurfaces.get(i))