Lines Matching refs:other
17 bool TextPropertyValue::operator==(const TextPropertyValue& other) const {
18 return fTypeface == other.fTypeface
19 && fText == other.fText
20 && fTextSize == other.fTextSize
21 && fStrokeWidth == other.fStrokeWidth
22 && fLineHeight == other.fLineHeight
23 && fLineShift == other.fLineShift
24 && fAscent == other.fAscent
25 && fHAlign == other.fHAlign
26 && fVAlign == other.fVAlign
27 && fResize == other.fResize
28 && fLineBreak == other.fLineBreak
29 && fDirection == other.fDirection
30 && fCapitalization == other.fCapitalization
31 && fBox == other.fBox
32 && fFillColor == other.fFillColor
33 && fStrokeColor == other.fStrokeColor
34 && fHasFill == other.fHasFill
35 && fHasStroke == other.fHasStroke;
38 bool TextPropertyValue::operator!=(const TextPropertyValue& other) const {
39 return !(*this== other);
42 bool TransformPropertyValue::operator==(const TransformPropertyValue& other) const {
43 return this->fAnchorPoint == other.fAnchorPoint
44 && this->fPosition == other.fPosition
45 && this->fScale == other.fScale
46 && this->fSkew == other.fSkew
47 && this->fSkewAxis == other.fSkewAxis;
50 bool TransformPropertyValue::operator!=(const TransformPropertyValue& other) const {
51 return !(*this == other);