HomeSort by relevance Sort by last modified time
    Searched refs:svgStyle (Results 1 - 25 of 38) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/css/
SVGCSSComputedStyleDeclaration.cpp 113 const SVGRenderStyle* svgStyle = style->svgStyle();
114 if (!svgStyle)
119 return CSSPrimitiveValue::create(svgStyle->clipRule());
121 return CSSPrimitiveValue::create(svgStyle->floodOpacity(), CSSPrimitiveValue::CSS_NUMBER);
123 return CSSPrimitiveValue::create(svgStyle->stopOpacity(), CSSPrimitiveValue::CSS_NUMBER);
125 return CSSPrimitiveValue::create(svgStyle->colorInterpolation());
127 return CSSPrimitiveValue::create(svgStyle->colorInterpolationFilters());
129 return CSSPrimitiveValue::create(svgStyle->fillOpacity(), CSSPrimitiveValue::CSS_NUMBER);
131 return CSSPrimitiveValue::create(svgStyle->fillRule())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResourceSolidColor.cpp 51 const SVGRenderStyle* svgStyle = style ? style->svgStyle() : 0;
58 if (!isRenderingMask && svgStyle)
59 context->setAlphaAsFloat(svgStyle->fillOpacity());
64 context->setFillRule(svgStyle ? svgStyle->fillRule() : RULE_NONZERO);
71 context->setAlphaAsFloat(svgStyle ? svgStyle->strokeOpacity() : 1);
RenderSVGResourceFilterPrimitive.cpp 46 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())
RenderSVGPath.cpp 58 if (style()->svgStyle()->hasStroke()) {
80 if (!style()->svgStyle()->hasVisibleStroke())
109 const SVGRenderStyle* svgStyle = style()->svgStyle();
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()->capStyle() == SquareCap
    [all...]
RenderSVGResource.cpp 42 const SVGRenderStyle* parentSVGStyle = object->parent()->style()->svgStyle();
58 const SVGRenderStyle* svgStyle = style->svgStyle();
59 if (!svgStyle)
75 if (!svgStyle->hasFill())
78 if (!svgStyle->hasStroke() || isRenderingMask)
83 SVGPaint::SVGPaintType paintType = applyToFill ? svgStyle->fillPaintType() : svgStyle->strokePaintType();
95 color = applyToFill ? svgStyle->fillPaintColor() : svgStyle->strokePaintColor()
    [all...]
RenderSVGShape.cpp 194 if (!style()->svgStyle()->hasMarkers())
256 const SVGRenderStyle* svgStyle = style()->svgStyle();
257 if (svgStyle->shapeRendering() == SR_CRISPEDGES)
261 switch (svgStyle->paintOrderType(i)) {
266 if (svgStyle->hasVisibleStroke()) {
327 const SVGRenderStyle* svgStyle = style()->svgStyle();
328 WindRule fillRule = svgStyle->fillRule();
330 fillRule = svgStyle->clipRule()
    [all...]
RenderSVGResourceGradient.cpp 107 const SVGRenderStyle* svgStyle = style->svgStyle();
108 ASSERT(svgStyle);
110 AffineTransform computedGradientSpaceTransform = computeResourceSpaceTransform(object, gradientData->userspaceTransform, svgStyle, resourceMode);
120 context->setAlphaAsFloat(svgStyle->fillOpacity());
122 context->setFillRule(svgStyle->fillRule());
124 context->setAlphaAsFloat(svgStyle->strokeOpacity());
SVGRenderSupport.cpp 349 const SVGRenderStyle* svgStyle = style->svgStyle();
350 ASSERT(svgStyle);
353 context->setStrokeThickness(svgStyle->strokeWidth()->value(lengthContext));
354 context->setLineCap(svgStyle->capStyle());
355 context->setLineJoin(svgStyle->joinStyle());
356 context->setMiterLimit(svgStyle->strokeMiterLimit());
358 RefPtr<SVGLengthList> dashes = svgStyle->strokeDashArray();
368 context->setLineDash(dashArray, svgStyle->strokeDashOffset()->value(lengthContext));
379 const SVGRenderStyle* svgStyle = style->svgStyle()
    [all...]
RenderSVGResourceMasker.cpp 90 const SVGRenderStyle* svgStyle = style()->svgStyle();
91 ASSERT(svgStyle);
92 ColorFilter maskLayerFilter = svgStyle->maskType() == MT_LUMINANCE
94 ColorFilter maskContentFilter = svgStyle->colorInterpolation() == CI_LINEARRGB
SVGRenderTreeAsText.cpp 273 const SVGRenderStyle* svgStyle = style->svgStyle();
290 double dashOffset = svgStyle->strokeDashOffset()->value(lengthContext);
291 double strokeWidth = svgStyle->strokeWidth()->value(lengthContext);
292 RefPtr<SVGLengthList> dashes = svgStyle->strokeDashArray();
300 writeIfNotDefault(ts, "opacity", svgStyle->strokeOpacity(), 1.0f);
302 writeIfNotDefault(ts, "miter limit", svgStyle->strokeMiterLimit(), 4.0f);
303 writeIfNotDefault(ts, "line cap", svgStyle->capStyle(), ButtCap);
304 writeIfNotDefault(ts, "line join", svgStyle->joinStyle(), MiterJoin);
317 writeIfNotDefault(ts, "opacity", svgStyle->fillOpacity(), 1.0f)
    [all...]
RenderSVGResourcePattern.cpp 145 const SVGRenderStyle* svgStyle = style->svgStyle();
146 ASSERT(svgStyle);
148 AffineTransform computedPatternSpaceTransform = computeResourceSpaceTransform(object, patternData->transform, svgStyle, resourceMode);
155 context->setAlphaAsFloat(svgStyle->fillOpacity());
157 context->setFillRule(svgStyle->fillRule());
159 context->setAlphaAsFloat(svgStyle->strokeOpacity());
ReferenceFilterBuilder.cpp 78 const SVGRenderStyle* svgStyle = style ? style->svgStyle() : 0;
80 if (svgStyle) {
82 eColorInterpolation = svgStyle->colorInterpolationFilters();
SVGResourcesCache.cpp 45 const SVGRenderStyle* svgStyle = style->svgStyle();
46 ASSERT(svgStyle);
49 OwnPtr<SVGResources> newResources = SVGResources::buildResources(object, svgStyle);
RenderSVGRect.cpp 80 if (style()->svgStyle()->hasStroke()) {
101 if (!style()->svgStyle()->hasVisibleStroke())
RenderSVGResourceClipper.cpp 88 if (!style()->svgStyle()->clipperResource().isEmpty())
106 const SVGRenderStyle* svgStyle = style->svgStyle();
108 if (!svgStyle->clipperResource().isEmpty())
114 clipRule = svgStyle->clipRule();
123 subPath.setWindRule(svgStyle->clipRule());
283 WindRule newClipRule = style->svgStyle()->clipRule();
291 newClipRule = renderer->style()->svgStyle()->clipRule();
SVGTextChunkBuilder.cpp 99 const SVGRenderStyle* svgStyle = style->svgStyle();
100 ASSERT(svgStyle);
110 if (svgStyle->isVerticalWritingMode())
114 switch (svgStyle->textAnchor()) {
SVGTextLayoutEngineBaseline.cpp 69 const SVGRenderStyle* style = textRenderer->style()->svgStyle();
114 ASSERT(textRenderer->style()->svgStyle());
120 EAlignmentBaseline baseline = textRenderer->style()->svgStyle()->alignmentBaseline();
SVGRenderingContext.cpp 112 const SVGRenderStyle* svgStyle = style->svgStyle();
113 ASSERT(svgStyle);
149 if (svgStyle->hasFilter())
RenderSVGText.cpp 433 || (hitRules.canHitStroke && (style()->svgStyle()->hasStroke() || !hitRules.requireStroke))
434 || (hitRules.canHitFill && (style()->svgStyle()->hasFill() || !hitRules.requireFill))) {
499 const SVGRenderStyle* svgStyle = style()->svgStyle();
500 if (!svgStyle->hasStroke())
506 strokeBoundaries.inflate(svgStyle->strokeWidth()->value(lengthContext));
RenderSVGEllipse.cpp 74 if (style()->svgStyle()->hasStroke())
109 if (!style()->svgStyle()->hasVisibleStroke())
SVGInlineTextBox.cpp 274 const SVGRenderStyle* svgStyle = style->svgStyle();
275 ASSERT(svgStyle);
277 bool hasFill = svgStyle->hasFill();
278 bool hasVisibleStroke = svgStyle->hasVisibleStroke();
284 const SVGRenderStyle* svgSelectionStyle = selectionStyle->svgStyle();
322 switch (svgStyle->paintOrderType(i)) {
549 const SVGRenderStyle* svgDecorationStyle = decorationStyle->svgStyle();
804 || (hitRules.canHitStroke && (renderer().style()->svgStyle()->hasStroke() || !hitRules.requireStroke))
805 || (hitRules.canHitFill && (renderer().style()->svgStyle()->hasFill() || !hitRules.requireFill)))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFEFloodElement.cpp 48 return flood->setFloodColor(style->svgStyle()->floodColor());
50 return flood->setFloodOpacity(style->svgStyle()->floodOpacity());
63 const SVGRenderStyle* svgStyle = renderer->style()->svgStyle();
65 Color color = svgStyle->floodColor();
66 float opacity = svgStyle->floodOpacity();
SVGStopElement.cpp 102 if (!style || !style->svgStyle())
105 const SVGRenderStyle* svgStyle = style->svgStyle();
106 return svgStyle->stopColor().combineWithAlpha(svgStyle->stopOpacity());
SVGFEDropShadowElement.cpp 121 const SVGRenderStyle* svgStyle = renderer->style()->svgStyle();
123 Color color = svgStyle->floodColor();
124 float opacity = svgStyle->floodOpacity();
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSAnimatableValueFactory.cpp 327 style.svgStyle()->fillPaintType(), style.svgStyle()->visitedLinkFillPaintType(),
328 style.svgStyle()->fillPaintColor(), style.svgStyle()->visitedLinkFillPaintColor(),
329 style.svgStyle()->fillPaintUri(), style.svgStyle()->visitedLinkFillPaintUri());
414 style.svgStyle()->strokePaintType(), style.svgStyle()->visitedLinkStrokePaintType(),
415 style.svgStyle()->strokePaintColor(), style.svgStyle()->visitedLinkStrokePaintColor()
    [all...]

Completed in 330 milliseconds

1 2