Lines Matching refs:svg_style

296   const SVGComputedStyle& svg_style = style.SvgStyle();  in WriteStyle()  local
306 if (WriteSVGPaint(ts, style, svg_style.StrokePaint(), in WriteStyle()
307 svg_style.InternalVisitedStrokePaint(), "stroke")) { in WriteStyle()
312 length_context.ValueForLength(svg_style.StrokeDashOffset(), style); in WriteStyle()
314 length_context.ValueForLength(svg_style.StrokeWidth()); in WriteStyle()
316 *svg_style.StrokeDashArray(), style, length_context); in WriteStyle()
318 WriteIfNotDefault(ts, "opacity", svg_style.StrokeOpacity(), 1.0f); in WriteStyle()
320 WriteIfNotDefault(ts, "miter limit", svg_style.StrokeMiterLimit(), 4.0f); in WriteStyle()
321 WriteIfNotDefault(ts, "line cap", svg_style.CapStyle(), kButtCap); in WriteStyle()
322 WriteIfNotDefault(ts, "line join", svg_style.JoinStyle(), kMiterJoin); in WriteStyle()
330 if (WriteSVGPaint(ts, style, svg_style.FillPaint(), in WriteStyle()
331 svg_style.InternalVisitedFillPaint(), "fill")) { in WriteStyle()
332 WriteIfNotDefault(ts, "opacity", svg_style.FillOpacity(), 1.0f); in WriteStyle()
333 WriteIfNotDefault(ts, "fill rule", svg_style.FillRule(), RULE_NONZERO); in WriteStyle()
336 WriteIfNotDefault(ts, "clip rule", svg_style.ClipRule(), RULE_NONZERO); in WriteStyle()
340 WriteSVGResourceIfNotNull(ts, "start marker", svg_style.MarkerStartResource(), in WriteStyle()
342 WriteSVGResourceIfNotNull(ts, "middle marker", svg_style.MarkerMidResource(), in WriteStyle()
344 WriteSVGResourceIfNotNull(ts, "end marker", svg_style.MarkerEndResource(), in WriteStyle()
363 const SVGComputedStyle& svg_style = style.SvgStyle(); in operator <<() local
367 length_context.ValueForLength(svg_style.X(), style, in operator <<()
370 length_context.ValueForLength(svg_style.Y(), style, in operator <<()
389 length_context.ValueForLength(svg_style.Cx(), style, in operator <<()
392 length_context.ValueForLength(svg_style.Cy(), style, in operator <<()
395 length_context.ValueForLength(svg_style.Rx(), style, in operator <<()
398 length_context.ValueForLength(svg_style.Ry(), style, in operator <<()
402 length_context.ValueForLength(svg_style.Cx(), style, in operator <<()
405 length_context.ValueForLength(svg_style.Cy(), style, in operator <<()
408 length_context.ValueForLength(svg_style.R(), style, in operator <<()
416 svg_style.D() ? *svg_style.D() : *StylePath::EmptyPath(); in operator <<()
461 const SVGComputedStyle& svg_style = text_line_layout.StyleRef().SvgStyle(); in WriteSVGInlineTextBox() local
475 ETextAnchor anchor = svg_style.TextAnchor(); in WriteSVGInlineTextBox()