Lines Matching refs:flags
46 if ((from->curColorSet && !(to->flags & SvgStyleFlags::Color)) || in _copyStyle()
50 to->flags = (to->flags | SvgStyleFlags::Color); in _copyStyle()
55 if (((from->flags & SvgStyleFlags::PaintOrder) && !(to->flags & SvgStyleFlags::PaintOrder)) || in _copyStyle()
58 to->flags = (to->flags | SvgStyleFlags::PaintOrder); in _copyStyle()
63 if (((from->flags & SvgStyleFlags::Display) && !(to->flags & SvgStyleFlags::Display)) || in _copyStyle()
66 to->flags = (to->flags | SvgStyleFlags::Display); in _copyStyle()
72 if (((from->fill.flags & SvgFillFlags::Paint) && !(to->flags & SvgStyleFlags::Fill)) || in _copyStyle()
81 to->fill.flags = (to->fill.flags | SvgFillFlags::Paint); in _copyStyle()
82 to->flags = (to->flags | SvgStyleFlags::Fill); in _copyStyle()
87 if (((from->fill.flags & SvgFillFlags::Opacity) && !(to->flags & SvgStyleFlags::FillOpacity)) || in _copyStyle()
90 to->fill.flags = (to->fill.flags | SvgFillFlags::Opacity); in _copyStyle()
91 to->flags = (to->flags | SvgStyleFlags::FillOpacity); in _copyStyle()
96 if (((from->fill.flags & SvgFillFlags::FillRule) && !(to->flags & SvgStyleFlags::FillRule)) || in _copyStyle()
99 to->fill.flags = (to->fill.flags | SvgFillFlags::FillRule); in _copyStyle()
100 to->flags = (to->flags | SvgStyleFlags::FillRule); in _copyStyle()
106 if (((from->stroke.flags & SvgStrokeFlags::Paint) && !(to->flags & SvgStyleFlags::Stroke)) || in _copyStyle()
115 to->stroke.flags = (to->stroke.flags | SvgStrokeFlags::Paint); in _copyStyle()
116 to->flags = (to->flags | SvgStyleFlags::Stroke); in _copyStyle()
121 …if (((from->stroke.flags & SvgStrokeFlags::Opacity) && !(to->flags & SvgStyleFlags::StrokeOpacity)… in _copyStyle()
124 to->stroke.flags = (to->stroke.flags | SvgStrokeFlags::Opacity); in _copyStyle()
125 to->flags = (to->flags | SvgStyleFlags::StrokeOpacity); in _copyStyle()
130 … if (((from->stroke.flags & SvgStrokeFlags::Width) && !(to->flags & SvgStyleFlags::StrokeWidth)) || in _copyStyle()
133 to->stroke.flags = (to->stroke.flags | SvgStrokeFlags::Width); in _copyStyle()
134 to->flags = (to->flags | SvgStyleFlags::StrokeWidth); in _copyStyle()
139 …if (((from->stroke.flags & SvgStrokeFlags::Dash) && !(to->flags & SvgStyleFlags::StrokeDashArray))… in _copyStyle()
147 to->stroke.flags = (to->stroke.flags | SvgStrokeFlags::Dash); in _copyStyle()
148 to->flags = (to->flags | SvgStyleFlags::StrokeDashArray); in _copyStyle()
154 … if (((from->stroke.flags & SvgStrokeFlags::Cap) && !(to->flags & SvgStyleFlags::StrokeLineCap)) || in _copyStyle()
157 to->stroke.flags = (to->stroke.flags | SvgStrokeFlags::Cap); in _copyStyle()
158 to->flags = (to->flags | SvgStyleFlags::StrokeLineCap); in _copyStyle()
163 …if (((from->stroke.flags & SvgStrokeFlags::Join) && !(to->flags & SvgStyleFlags::StrokeLineJoin)) … in _copyStyle()
166 to->stroke.flags = (to->stroke.flags | SvgStrokeFlags::Join); in _copyStyle()
167 to->flags = (to->flags | SvgStyleFlags::StrokeLineJoin); in _copyStyle()
174 if ((from->opacity < 255 && !(to->flags & SvgStyleFlags::Opacity)) || in _copyStyle()
177 to->flags = (to->flags | SvgStyleFlags::Opacity); in _copyStyle()
192 if (from->transform && !(to->style->flags & SvgStyleFlags::Transform)) { in cssCopyStyleAttr()
196 to->style->flags = (to->style->flags | SvgStyleFlags::Transform); in cssCopyStyleAttr()