HomeSort by relevance Sort by last modified time
    Searched defs:svgStyle (Results 1 - 23 of 23) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResourceSolidColor.cpp 54 const SVGRenderStyle& svgStyle = style->svgStyle();
58 context->setAlphaAsFloat(svgStyle.fillOpacity());
63 context->setFillRule(svgStyle.fillRule());
70 context->setAlphaAsFloat(svgStyle.strokeOpacity());
RenderSVGResourceGradient.cpp 107 const SVGRenderStyle& svgStyle = style->svgStyle();
109 AffineTransform computedGradientSpaceTransform = computeResourceSpaceTransform(object, gradientData->userspaceTransform, svgStyle, resourceMode);
119 context->setAlphaAsFloat(svgStyle.fillOpacity());
121 context->setFillRule(svgStyle.fillRule());
123 context->setAlphaAsFloat(svgStyle.strokeOpacity());
ReferenceFilterBuilder.cpp 79 const SVGRenderStyle* svgStyle = style ? &style->svgStyle() : 0;
81 if (svgStyle) {
83 eColorInterpolation = svgStyle->colorInterpolationFilters();
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 46 const SVGRenderStyle& svgStyle = style->svgStyle();
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.visitedLinkStrokePaintType()
    [all...]
RenderSVGResourceMasker.cpp 88 const SVGRenderStyle& svgStyle = style()->svgStyle();
89 ColorFilter maskLayerFilter = svgStyle.maskType() == MT_LUMINANCE
91 ColorFilter maskContentFilter = svgStyle.colorInterpolation() == CI_LINEARRGB
RenderSVGResourcePattern.cpp 146 const SVGRenderStyle& svgStyle = style->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());
SVGResourcesCache.cpp 45 const SVGRenderStyle& svgStyle = style->svgStyle();
48 OwnPtr<SVGResources> newResources = SVGResources::buildResources(object, svgStyle);
RenderSVGResourceClipper.cpp 89 if (!style()->svgStyle().clipperResource().isEmpty())
107 const SVGRenderStyle& svgStyle = style->svgStyle();
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();
SVGRenderSupport.cpp 319 const SVGRenderStyle& svgStyle = style->svgStyle();
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();
    [all...]
SVGRenderingContext.cpp 108 const SVGRenderStyle& svgStyle = style->svgStyle();
144 if (svgStyle.hasFilter())
SVGTextChunkBuilder.cpp 93 const SVGRenderStyle& svgStyle = style->svgStyle();
103 if (svgStyle.isVerticalWritingMode())
107 switch (svgStyle.textAnchor()) {
RenderSVGShape.cpp 190 if (!style()->svgStyle().hasMarkers())
257 const SVGRenderStyle& svgStyle = style()->svgStyle();
258 if (svgStyle.shapeRendering() == SR_CRISPEDGES)
262 switch (svgStyle.paintOrderType(i)) {
267 if (svgStyle.hasVisibleStroke()) {
327 const SVGRenderStyle& svgStyle = style()->svgStyle();
328 WindRule fillRule = svgStyle.fillRule();
330 fillRule = svgStyle.clipRule()
    [all...]
RenderSVGText.cpp 431 || (hitRules.canHitStroke && (style()->svgStyle().hasStroke() || !hitRules.requireStroke))
432 || (hitRules.canHitFill && (style()->svgStyle().hasFill() || !hitRules.requireFill))) {
477 const SVGRenderStyle& svgStyle = style()->svgStyle();
478 if (!svgStyle.hasStroke())
484 strokeBoundaries.inflate(svgStyle.strokeWidth()->value(lengthContext));
SVGInlineTextBox.cpp 268 const SVGRenderStyle& svgStyle = style->svgStyle();
270 bool hasFill = svgStyle.hasFill();
271 bool hasVisibleStroke = svgStyle.hasVisibleStroke();
277 const SVGRenderStyle& svgSelectionStyle = selectionStyle->svgStyle();
313 switch (svgStyle.paintOrderType(i)) {
510 const SVGRenderStyle& svgDecorationStyle = decorationStyle->svgStyle();
751 || (hitRules.canHitStroke && (renderer().style()->svgStyle().hasStroke() || !hitRules.requireStroke))
752 || (hitRules.canHitFill && (renderer().style()->svgStyle().hasFill() || !hitRules.requireFill))) {
SVGRenderTreeAsText.cpp 274 const SVGRenderStyle& svgStyle = style->svgStyle();
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.fillOpacity(), 1.0f)
    [all...]
SVGTextLayoutEngine.cpp 252 m_isVerticalText = style->svgStyle().isVerticalWritingMode();
436 const SVGRenderStyle& svgStyle = style.svgStyle();
453 float baselineShift = baselineLayout.calculateBaselineShift(svgStyle, lengthContext);
495 float orientationAngle = baselineLayout.calculateGlyphOrientationAngle(m_isVerticalText, svgStyle, currentCharacter);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFEFloodElement.cpp 47 return flood->setFloodColor(style->svgStyle().floodColor());
49 return flood->setFloodOpacity(style->svgStyle().floodOpacity());
62 const SVGRenderStyle& svgStyle = renderer->style()->svgStyle();
64 Color color = svgStyle.floodColor();
65 float opacity = svgStyle.floodOpacity();
SVGFEDropShadowElement.cpp 101 const SVGRenderStyle& svgStyle = renderer->style()->svgStyle();
103 Color color = svgStyle.floodColor();
104 float opacity = svgStyle.floodOpacity();
SVGStopElement.cpp 103 const SVGRenderStyle& svgStyle = style->svgStyle();
104 return svgStyle.stopColor().combineWithAlpha(svgStyle.stopOpacity());
  /external/chromium_org/third_party/WebKit/Source/core/css/
SVGCSSComputedStyleDeclaration.cpp 125 const SVGRenderStyle& svgStyle = style->svgStyle();
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.colorRendering())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleBuilderCustom.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.h     [all...]

Completed in 1052 milliseconds