Lines Matching defs:other

584     public boolean hasEqualAttributes(@NonNull Paint other) {
585 return mColorFilter == other.mColorFilter
586 && mMaskFilter == other.mMaskFilter
587 && mPathEffect == other.mPathEffect
588 && mShader == other.mShader
589 && mTypeface == other.mTypeface
590 && mXfermode == other.mXfermode
591 && mHasCompatScaling == other.mHasCompatScaling
592 && mCompatScaling == other.mCompatScaling
593 && mInvCompatScaling == other.mInvCompatScaling
594 && mBidiFlags == other.mBidiFlags
595 && mLocales.equals(other.mLocales)
596 && TextUtils.equals(mFontFeatureSettings, other.mFontFeatureSettings)
597 && TextUtils.equals(mFontVariationSettings, other.mFontVariationSettings)
598 && mShadowLayerRadius == other.mShadowLayerRadius
599 && mShadowLayerDx == other.mShadowLayerDx
600 && mShadowLayerDy == other.mShadowLayerDy
601 && mShadowLayerColor == other.mShadowLayerColor
602 && getFlags() == other.getFlags()
603 && getHinting() == other.getHinting()
604 && getStyle() == other.getStyle()
605 && getColor() == other.getColor()
606 && getStrokeWidth() == other.getStrokeWidth()
607 && getStrokeMiter() == other.getStrokeMiter()
608 && getStrokeCap() == other.getStrokeCap()
609 && getStrokeJoin() == other.getStrokeJoin()
610 && getTextAlign() == other.getTextAlign()
611 && isElegantTextHeight() == other.isElegantTextHeight()
612 && getTextSize() == other.getTextSize()
613 && getTextScaleX() == other.getTextScaleX()
614 && getTextSkewX() == other.getTextSkewX()
615 && getLetterSpacing() == other.getLetterSpacing()
616 && getWordSpacing() == other.getWordSpacing()
617 && getHyphenEdit() == other.getHyphenEdit();
1312 * with other drawing operations is constrained to the software rendering
2368 * other characters in the cluster. In effect, such clusters are
2841 * @param other A {@link Paint} object.
2842 * @return true if the other {@link Paint} has the same effect on text measurement.
2844 public boolean equalsForTextMeasurement(@NonNull Paint other) {
2845 return nEqualsForTextMeasurement(mNativePaint, other.mNativePaint);