Searched refs:svgStyle (Results 1 - 25 of 38) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/css/
H A DSVGCSSComputedStyleDeclaration.cpp125 const SVGRenderStyle& svgStyle = style->svgStyle(); local
129 return CSSPrimitiveValue::create(svgStyle.clipRule());
131 return CSSPrimitiveValue::create(svgStyle.floodOpacity(), CSSPrimitiveValue::CSS_NUMBER);
133 return CSSPrimitiveValue::create(svgStyle.stopOpacity(), CSSPrimitiveValue::CSS_NUMBER);
135 return CSSPrimitiveValue::create(svgStyle.colorInterpolation());
137 return CSSPrimitiveValue::create(svgStyle.colorInterpolationFilters());
139 return CSSPrimitiveValue::create(svgStyle.fillOpacity(), CSSPrimitiveValue::CSS_NUMBER);
141 return CSSPrimitiveValue::create(svgStyle.fillRule());
143 return CSSPrimitiveValue::create(svgStyle
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGFEFloodElement.cpp47 return flood->setFloodColor(style->svgStyle().floodColor());
49 return flood->setFloodOpacity(style->svgStyle().floodOpacity());
62 const SVGRenderStyle& svgStyle = renderer->style()->svgStyle(); local
64 Color color = svgStyle.floodColor();
65 float opacity = svgStyle.floodOpacity();
H A DSVGStopElement.cpp103 const SVGRenderStyle& svgStyle = style->svgStyle(); local
104 return svgStyle.stopColor().combineWithAlpha(svgStyle.stopOpacity());
H A DSVGFEDropShadowElement.cpp101 const SVGRenderStyle& svgStyle = renderer->style()->svgStyle(); local
103 Color color = svgStyle.floodColor();
104 float opacity = svgStyle.floodOpacity();
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGResourceFilterPrimitive.cpp46 const SVGRenderStyle& newStyle = this->style()->svgStyle();
49 if (newStyle.floodColor() != oldStyle->svgStyle().floodColor())
51 if (newStyle.floodOpacity() != oldStyle->svgStyle().floodOpacity())
54 if (newStyle.lightingColor() != oldStyle->svgStyle().lightingColor())
H A DRenderSVGPath.cpp58 if (style()->svgStyle().hasStroke()) {
80 if (!style()->svgStyle().hasVisibleStroke())
109 const SVGRenderStyle& svgStyle = style()->svgStyle(); local
111 ASSERT(svgStyle.hasStroke());
113 if (svgStyle.capStyle() == SquareCap) {
117 ASSERT(svgStyle.capStyle() == RoundCap);
130 return style()->svgStyle().hasStroke() && style()->svgStyle().capStyle() != ButtCap;
138 if (style()->svgStyle()
[all...]
H A DRenderSVGResourceSolidColor.cpp54 const SVGRenderStyle& svgStyle = style->svgStyle(); local
58 context->setAlphaAsFloat(svgStyle.fillOpacity());
63 context->setFillRule(svgStyle.fillRule());
70 context->setAlphaAsFloat(svgStyle.strokeOpacity());
H A DRenderSVGResource.cpp46 const SVGRenderStyle& svgStyle = style->svgStyle(); local
61 if (!svgStyle.hasFill())
64 if (!svgStyle.hasStroke() || isRenderingMask)
69 SVGPaintType paintType = applyToFill ? svgStyle.fillPaintType() : svgStyle.strokePaintType();
79 color = applyToFill ? svgStyle.fillPaintColor() : svgStyle.strokePaintColor();
87 SVGPaintType visitedPaintType = applyToFill ? svgStyle.visitedLinkFillPaintType() : svgStyle
[all...]
H A DRenderSVGShape.cpp190 if (!style()->svgStyle().hasMarkers())
257 const SVGRenderStyle& svgStyle = style()->svgStyle(); local
258 if (svgStyle.shapeRendering() == SR_CRISPEDGES)
262 switch (svgStyle.paintOrderType(i)) {
267 if (svgStyle.hasVisibleStroke()) {
327 const SVGRenderStyle& svgStyle = style()->svgStyle(); local
328 WindRule fillRule = svgStyle.fillRule();
330 fillRule = svgStyle
423 const SVGRenderStyle& svgStyle = style()->svgStyle(); local
[all...]
H A DRenderSVGResourceGradient.cpp107 const SVGRenderStyle& svgStyle = style->svgStyle(); local
109 AffineTransform computedGradientSpaceTransform = computeResourceSpaceTransform(object, gradientData->userspaceTransform, svgStyle, resourceMode);
119 context->setAlphaAsFloat(svgStyle.fillOpacity());
121 context->setFillRule(svgStyle.fillRule());
123 context->setAlphaAsFloat(svgStyle.strokeOpacity());
H A DSVGRenderSupport.cpp319 const SVGRenderStyle& svgStyle = style->svgStyle(); local
322 context->setStrokeThickness(svgStyle.strokeWidth()->value(lengthContext));
323 context->setLineCap(svgStyle.capStyle());
324 context->setLineJoin(svgStyle.joinStyle());
325 context->setMiterLimit(svgStyle.strokeMiterLimit());
327 RefPtr<SVGLengthList> dashes = svgStyle.strokeDashArray();
337 context->setLineDash(dashArray, svgStyle.strokeDashOffset()->value(lengthContext));
348 const SVGRenderStyle& svgStyle = style->svgStyle(); local
[all...]
H A DSVGRenderTreeAsText.cpp274 const SVGRenderStyle& svgStyle = style->svgStyle(); local
291 double dashOffset = svgStyle.strokeDashOffset()->value(lengthContext);
292 double strokeWidth = svgStyle.strokeWidth()->value(lengthContext);
293 RefPtr<SVGLengthList> dashes = svgStyle.strokeDashArray();
301 writeIfNotDefault(ts, "opacity", svgStyle.strokeOpacity(), 1.0f);
303 writeIfNotDefault(ts, "miter limit", svgStyle.strokeMiterLimit(), 4.0f);
304 writeIfNotDefault(ts, "line cap", svgStyle.capStyle(), ButtCap);
305 writeIfNotDefault(ts, "line join", svgStyle.joinStyle(), MiterJoin);
318 writeIfNotDefault(ts, "opacity", svgStyle
408 const SVGRenderStyle& svgStyle = textRenderer.style()->svgStyle(); local
646 const SVGRenderStyle& svgStyle = style->svgStyle(); local
[all...]
H A DReferenceFilterBuilder.cpp79 const SVGRenderStyle* svgStyle = style ? &style->svgStyle() : 0; local
81 if (svgStyle) {
83 eColorInterpolation = svgStyle->colorInterpolationFilters();
H A DRenderSVGResourceMasker.cpp88 const SVGRenderStyle& svgStyle = style()->svgStyle(); local
89 ColorFilter maskLayerFilter = svgStyle.maskType() == MT_LUMINANCE
91 ColorFilter maskContentFilter = svgStyle.colorInterpolation() == CI_LINEARRGB
H A DRenderSVGRect.cpp80 if (style()->svgStyle().hasStroke()) {
101 if (!style()->svgStyle().hasVisibleStroke())
H A DRenderSVGResourceClipper.cpp89 if (!style()->svgStyle().clipperResource().isEmpty())
107 const SVGRenderStyle& svgStyle = style->svgStyle(); local
109 if (!svgStyle.clipperResource().isEmpty())
115 clipRule = svgStyle.clipRule();
124 subPath.setWindRule(svgStyle.clipRule());
281 WindRule newClipRule = style->svgStyle().clipRule();
289 newClipRule = renderer->style()->svgStyle().clipRule();
H A DRenderSVGResourcePattern.cpp146 const SVGRenderStyle& svgStyle = style->svgStyle(); local
148 AffineTransform computedPatternSpaceTransform = computeResourceSpaceTransform(object, patternData->transform, svgStyle, resourceMode);
155 context->setAlphaAsFloat(svgStyle.fillOpacity());
157 context->setFillRule(svgStyle.fillRule());
159 context->setAlphaAsFloat(svgStyle.strokeOpacity());
H A DSVGResourcesCache.cpp45 const SVGRenderStyle& svgStyle = style->svgStyle(); local
48 OwnPtr<SVGResources> newResources = SVGResources::buildResources(object, svgStyle);
H A DSVGTextChunkBuilder.cpp93 const SVGRenderStyle& svgStyle = style->svgStyle(); local
103 if (svgStyle.isVerticalWritingMode())
107 switch (svgStyle.textAnchor()) {
H A DRenderSVGText.cpp431 || (hitRules.canHitStroke && (style()->svgStyle().hasStroke() || !hitRules.requireStroke))
432 || (hitRules.canHitFill && (style()->svgStyle().hasFill() || !hitRules.requireFill))) {
477 const SVGRenderStyle& svgStyle = style()->svgStyle(); local
478 if (!svgStyle.hasStroke())
484 strokeBoundaries.inflate(svgStyle.strokeWidth()->value(lengthContext));
H A DRenderSVGEllipse.cpp74 if (style()->svgStyle().hasStroke())
109 if (!style()->svgStyle().hasVisibleStroke())
H A DSVGTextLayoutEngineBaseline.cpp69 const SVGRenderStyle& style = textRenderer->style()->svgStyle();
118 EAlignmentBaseline baseline = textRenderer->style()->svgStyle().alignmentBaseline();
H A DSVGRenderingContext.cpp108 const SVGRenderStyle& svgStyle = style->svgStyle(); local
144 if (svgStyle.hasFilter())
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DSVGImagePainter.cpp45 if (m_renderSVGImage.style()->svgStyle().bufferedRendering() == BR_STATIC && renderingContext.bufferForeground(m_renderSVGImage.bufferedForeground()))
66 if (renderer.style()->svgStyle().bufferedRendering() != BR_STATIC)
/external/chromium_org/third_party/WebKit/Source/core/animation/css/
H A DCSSAnimatableValueFactory.cpp335 style.svgStyle().fillPaintType(), style.svgStyle().visitedLinkFillPaintType(),
336 style.svgStyle().fillPaintColor(), style.svgStyle().visitedLinkFillPaintColor(),
337 style.svgStyle().fillPaintUri(), style.svgStyle().visitedLinkFillPaintUri());
424 style.svgStyle().strokePaintType(), style.svgStyle().visitedLinkStrokePaintType(),
425 style.svgStyle().strokePaintColor(), style.svgStyle()
[all...]

Completed in 261 milliseconds

12