Home | History | Annotate | Download | only in style

Lines Matching refs:other

47 StyleFillData::StyleFillData(const StyleFillData& other)
49 , opacity(other.opacity)
50 , paintType(other.paintType)
51 , paintColor(other.paintColor)
52 , paintUri(other.paintUri)
53 , visitedLinkPaintType(other.visitedLinkPaintType)
54 , visitedLinkPaintColor(other.visitedLinkPaintColor)
55 , visitedLinkPaintUri(other.visitedLinkPaintUri)
59 bool StyleFillData::operator==(const StyleFillData& other) const
61 return opacity == other.opacity
62 && paintType == other.paintType
63 && paintColor == other.paintColor
64 && paintUri == other.paintUri
65 && visitedLinkPaintType == other.visitedLinkPaintType
66 && visitedLinkPaintColor == other.visitedLinkPaintColor
67 && visitedLinkPaintUri == other.visitedLinkPaintUri;
85 StyleStrokeData::StyleStrokeData(const StyleStrokeData& other)
87 , opacity(other.opacity)
88 , miterLimit(other.miterLimit)
89 , width(other.width->clone())
90 , dashOffset(other.dashOffset->clone())
91 , dashArray(other.dashArray->clone())
92 , paintType(other.paintType)
93 , paintColor(other.paintColor)
94 , paintUri(other.paintUri)
95 , visitedLinkPaintType(other.visitedLinkPaintType)
96 , visitedLinkPaintColor(other.visitedLinkPaintColor)
97 , visitedLinkPaintUri(other.visitedLinkPaintUri)
101 bool StyleStrokeData::operator==(const StyleStrokeData& other) const
103 return *width == *other.width
104 && opacity == other.opacity
105 && miterLimit == other.miterLimit
106 && *dashOffset == *other.dashOffset
107 && *dashArray == *other.dashArray
108 && paintType == other.paintType
109 && paintColor == other.paintColor
110 && paintUri == other.paintUri
111 && visitedLinkPaintType == other.visitedLinkPaintType
112 && visitedLinkPaintColor == other.visitedLinkPaintColor
113 && visitedLinkPaintUri == other.visitedLinkPaintUri;
122 StyleStopData::StyleStopData(const StyleStopData& other)
124 , opacity(other.opacity)
125 , color(other.color)
129 bool StyleStopData::operator==(const StyleStopData& other) const
131 return color == other.color
132 && opacity == other.opacity;
143 StyleMiscData::StyleMiscData(const StyleMiscData& other)
145 , floodColor(other.floodColor)
146 , floodOpacity(other.floodOpacity)
147 , lightingColor(other.lightingColor)
148 , baselineShiftValue(other.baselineShiftValue->clone())
152 bool StyleMiscData::operator==(const StyleMiscData& other) const
154 return floodOpacity == other.floodOpacity
155 && floodColor == other.floodColor
156 && lightingColor == other.lightingColor
157 && *baselineShiftValue == *other.baselineShiftValue;
167 StyleResourceData::StyleResourceData(const StyleResourceData& other)
169 , clipper(other.clipper)
170 , filter(other.filter)
171 , masker(other.masker)
175 bool StyleResourceData::operator==(const StyleResourceData& other) const
177 return clipper == other.clipper
178 && filter == other.filter
179 && masker == other.masker;
189 StyleInheritedResourceData::StyleInheritedResourceData(const StyleInheritedResourceData& other)
191 , markerStart(other.markerStart)
192 , markerMid(other.markerMid)
193 , markerEnd(other.markerEnd)
197 bool StyleInheritedResourceData::operator==(const StyleInheritedResourceData& other) const
199 return markerStart == other.markerStart
200 && markerMid == other.markerMid
201 && markerEnd == other.markerEnd;