Lines Matching refs:other

379         PrintAttributes other = (PrintAttributes) obj;
380 if (mColorMode != other.mColorMode) {
383 if (mDuplexMode != other.mDuplexMode) {
387 if (other.mMinMargins != null) {
390 } else if (!mMinMargins.equals(other.mMinMargins)) {
394 if (other.mMediaSize != null) {
397 } else if (!mMediaSize.equals(other.mMediaSize)) {
401 if (other.mResolution != null) {
404 } else if (!mResolution.equals(other.mResolution)) {
441 public void copyFrom(PrintAttributes other) {
442 mMediaSize = other.mMediaSize;
443 mResolution = other.mResolution;
444 mMinMargins = other.mMinMargins;
445 mColorMode = other.mColorMode;
446 mDuplexMode = other.mDuplexMode;
828 * @param id The unique media size id. It is unique amongst other media sizes
863 * @param id The unique media size id. It is unique amongst other media sizes
894 * Gets the unique media size id. It is unique amongst other media sizes
898 * instance and should not be interpreted by other parties.
1028 MediaSize other = (MediaSize) obj;
1029 if (mWidthMils != other.mWidthMils) {
1032 if (mHeightMils != other.mHeightMils) {
1081 * @param id The unique resolution id. It is unique amongst other resolutions
1114 * Gets the unique resolution id. It is unique amongst other resolutions
1118 * instance and should not be interpreted by other parties.
1189 Resolution other = (Resolution) obj;
1190 if (mHorizontalDpi != other.mHorizontalDpi) {
1193 if (mVerticalDpi != other.mVerticalDpi) {
1313 Margins other = (Margins) obj;
1314 if (mBottomMils != other.mBottomMils) {
1317 if (mLeftMils != other.mLeftMils) {
1320 if (mRightMils != other.mRightMils) {
1323 if (mTopMils != other.mTopMils) {