Lines Matching defs:other

383         PrintAttributes other = (PrintAttributes) obj;
384 if (mColorMode != other.mColorMode) {
387 if (mDuplexMode != other.mDuplexMode) {
391 if (other.mMinMargins != null) {
394 } else if (!mMinMargins.equals(other.mMinMargins)) {
398 if (other.mMediaSize != null) {
401 } else if (!mMediaSize.equals(other.mMediaSize)) {
405 if (other.mResolution != null) {
408 } else if (!mResolution.equals(other.mResolution)) {
445 public void copyFrom(PrintAttributes other) {
446 mMediaSize = other.mMediaSize;
447 mResolution = other.mResolution;
448 mMinMargins = other.mMinMargins;
449 mColorMode = other.mColorMode;
450 mDuplexMode = other.mDuplexMode;
832 * @param id The unique media size id. It is unique amongst other media sizes
867 * @param id The unique media size id. It is unique amongst other media sizes
898 * Gets the unique media size id. It is unique amongst other media sizes
902 * instance and should not be interpreted by other parties.
1032 MediaSize other = (MediaSize) obj;
1033 if (mWidthMils != other.mWidthMils) {
1036 if (mHeightMils != other.mHeightMils) {
1085 * @param id The unique resolution id. It is unique amongst other resolutions
1118 * Gets the unique resolution id. It is unique amongst other resolutions
1122 * instance and should not be interpreted by other parties.
1193 Resolution other = (Resolution) obj;
1194 if (mHorizontalDpi != other.mHorizontalDpi) {
1197 if (mVerticalDpi != other.mVerticalDpi) {
1317 Margins other = (Margins) obj;
1318 if (mBottomMils != other.mBottomMils) {
1321 if (mLeftMils != other.mLeftMils) {
1324 if (mRightMils != other.mRightMils) {
1327 if (mTopMils != other.mTopMils) {