• Home
  • Raw
  • Download

Lines Matching refs:SkSVGAttribute

38 bool SetPaintAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr,  in SetPaintAttribute()
50 bool SetColorAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, in SetColorAttribute()
62 bool SetIRIAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, in SetIRIAttribute()
74 bool SetClipPathAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, in SetClipPathAttribute()
87 bool SetPathDataAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, in SetPathDataAttribute()
98 bool SetTransformAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, in SetTransformAttribute()
110 bool SetLengthAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, in SetLengthAttribute()
122 bool SetNumberAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, in SetNumberAttribute()
134 bool SetViewBoxAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, in SetViewBoxAttribute()
146 bool SetLineCapAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, in SetLineCapAttribute()
158 bool SetLineJoinAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, in SetLineJoinAttribute()
170 bool SetSpreadMethodAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, in SetSpreadMethodAttribute()
182 bool SetPointsAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, in SetPointsAttribute()
194 bool SetFillRuleAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, in SetFillRuleAttribute()
206 bool SetVisibilityAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, in SetVisibilityAttribute()
218 bool SetDashArrayAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, in SetDashArrayAttribute()
280 bool SetStyleAttributes(const sk_sp<SkSVGNode>& node, SkSVGAttribute, in SetStyleAttributes() argument
303 SkSVGAttribute fAttr;
304 bool (*fSetter)(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue);
308 { "clip-path" , { SkSVGAttribute::kClipPath , SetClipPathAttribute }},
309 { "clip-rule" , { SkSVGAttribute::kClipRule , SetFillRuleAttribute }},
310 { "cx" , { SkSVGAttribute::kCx , SetLengthAttribute }},
311 { "cy" , { SkSVGAttribute::kCy , SetLengthAttribute }},
312 { "d" , { SkSVGAttribute::kD , SetPathDataAttribute }},
313 { "fill" , { SkSVGAttribute::kFill , SetPaintAttribute }},
314 { "fill-opacity" , { SkSVGAttribute::kFillOpacity , SetNumberAttribute }},
315 { "fill-rule" , { SkSVGAttribute::kFillRule , SetFillRuleAttribute }},
317 { "fx" , { SkSVGAttribute::kFx , SetLengthAttribute }},
318 { "fy" , { SkSVGAttribute::kFy , SetLengthAttribute }},
319 { "gradientTransform", { SkSVGAttribute::kGradientTransform, SetTransformAttribute }},
320 { "height" , { SkSVGAttribute::kHeight , SetLengthAttribute }},
321 { "offset" , { SkSVGAttribute::kOffset , SetLengthAttribute }},
322 { "opacity" , { SkSVGAttribute::kOpacity , SetNumberAttribute }},
323 { "patternTransform" , { SkSVGAttribute::kPatternTransform , SetTransformAttribute }},
324 { "points" , { SkSVGAttribute::kPoints , SetPointsAttribute }},
325 { "r" , { SkSVGAttribute::kR , SetLengthAttribute }},
326 { "rx" , { SkSVGAttribute::kRx , SetLengthAttribute }},
327 { "ry" , { SkSVGAttribute::kRy , SetLengthAttribute }},
328 { "spreadMethod" , { SkSVGAttribute::kSpreadMethod , SetSpreadMethodAttribute }},
329 { "stop-color" , { SkSVGAttribute::kStopColor , SetColorAttribute }},
330 { "stop-opacity" , { SkSVGAttribute::kStopOpacity , SetNumberAttribute }},
331 { "stroke" , { SkSVGAttribute::kStroke , SetPaintAttribute }},
332 { "stroke-dasharray" , { SkSVGAttribute::kStrokeDashArray , SetDashArrayAttribute }},
333 { "stroke-dashoffset", { SkSVGAttribute::kStrokeDashOffset , SetLengthAttribute }},
334 { "stroke-linecap" , { SkSVGAttribute::kStrokeLineCap , SetLineCapAttribute }},
335 { "stroke-linejoin" , { SkSVGAttribute::kStrokeLineJoin , SetLineJoinAttribute }},
336 { "stroke-miterlimit", { SkSVGAttribute::kStrokeMiterLimit , SetNumberAttribute }},
337 { "stroke-opacity" , { SkSVGAttribute::kStrokeOpacity , SetNumberAttribute }},
338 { "stroke-width" , { SkSVGAttribute::kStrokeWidth , SetLengthAttribute }},
339 { "style" , { SkSVGAttribute::kUnknown , SetStyleAttributes }},
340 { "transform" , { SkSVGAttribute::kTransform , SetTransformAttribute }},
341 { "viewBox" , { SkSVGAttribute::kViewBox , SetViewBoxAttribute }},
342 { "visibility" , { SkSVGAttribute::kVisibility , SetVisibilityAttribute }},
343 { "width" , { SkSVGAttribute::kWidth , SetLengthAttribute }},
344 { "x" , { SkSVGAttribute::kX , SetLengthAttribute }},
345 { "x1" , { SkSVGAttribute::kX1 , SetLengthAttribute }},
346 { "x2" , { SkSVGAttribute::kX2 , SetLengthAttribute }},
347 { "xlink:href" , { SkSVGAttribute::kHref , SetIRIAttribute }},
348 { "y" , { SkSVGAttribute::kY , SetLengthAttribute }},
349 { "y1" , { SkSVGAttribute::kY1 , SetLengthAttribute }},
350 { "y2" , { SkSVGAttribute::kY2 , SetLengthAttribute }},