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 51 const SVGRenderStyle* svgStyle = style ? style->svgStyle() : 0;
58 if (!isRenderingMask && svgStyle)
59 context->setAlpha(svgStyle->fillOpacity());
64 context->setFillRule(svgStyle ? svgStyle->fillRule() : RULE_NONZERO);
71 context->setAlpha(svgStyle ? svgStyle->strokeOpacity() : 1);
RenderSVGResourceGradient.cpp 123 const SVGRenderStyle* svgStyle = style->svgStyle();
124 ASSERT(svgStyle);
127 context->setAlpha(svgStyle->fillOpacity());
129 context->setFillRule(svgStyle->fillRule());
131 if (svgStyle->vectorEffect() == VE_NON_SCALING_STROKE)
133 context->setAlpha(svgStyle->strokeOpacity());
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 44 const SVGRenderStyle* parentSVGStyle = object->parent()->style()->svgStyle();
55 const SVGRenderStyle* svgStyle = style->svgStyle();
56 if (!svgStyle)
72 if (!svgStyle->hasFill())
75 if (!svgStyle->hasStroke() || isRenderingMask)
80 SVGPaint::SVGPaintType paintType = applyToFill ? svgStyle->fillPaintType() : svgStyle->strokePaintType();
92 color = applyToFill ? svgStyle->fillPaintColor() : svgStyle->strokePaintColor()
    [all...]
ReferenceFilterBuilder.cpp 78 const SVGRenderStyle* svgStyle = style ? style->svgStyle() : 0;
80 if (svgStyle) {
82 eColorInterpolation = svgStyle->colorInterpolationFilters();
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
RenderSVGResourcePattern.cpp 156 const SVGRenderStyle* svgStyle = style->svgStyle();
157 ASSERT(svgStyle);
160 context->setAlpha(svgStyle->fillOpacity());
162 context->setFillRule(svgStyle->fillRule());
164 if (svgStyle->vectorEffect() == VE_NON_SCALING_STROKE)
166 context->setAlpha(svgStyle->strokeOpacity());
SVGResourcesCache.cpp 45 const SVGRenderStyle* svgStyle = style->svgStyle();
46 ASSERT(svgStyle);
49 OwnPtr<SVGResources> newResources = SVGResources::buildResources(object, svgStyle);
RenderSVGResourceClipper.cpp 87 if (!style()->svgStyle()->clipperResource().isEmpty())
105 const SVGRenderStyle* svgStyle = style->svgStyle();
107 if (!svgStyle->clipperResource().isEmpty())
113 clipRule = svgStyle->clipRule();
122 subPath.setWindRule(svgStyle->clipRule());
280 WindRule newClipRule = style->svgStyle()->clipRule();
288 newClipRule = renderer->style()->svgStyle()->clipRule();
SVGRenderSupport.cpp 356 const SVGRenderStyle* svgStyle = style->svgStyle();
357 ASSERT(svgStyle);
360 context->setStrokeThickness(svgStyle->strokeWidth().value(lengthContext));
361 context->setLineCap(svgStyle->capStyle());
362 context->setLineJoin(svgStyle->joinStyle());
363 context->setMiterLimit(svgStyle->strokeMiterLimit());
365 const Vector<SVGLength>& dashes = svgStyle->strokeDashArray();
374 context->setLineDash(dashArray, svgStyle->strokeDashOffset().value(lengthContext));
385 const SVGRenderStyle* svgStyle = style->svgStyle()
    [all...]
SVGRenderingContext.cpp 111 const SVGRenderStyle* svgStyle = style->svgStyle();
112 ASSERT(svgStyle);
143 if (svgStyle->hasFilter())
SVGTextChunkBuilder.cpp 100 const SVGRenderStyle* svgStyle = style->svgStyle();
101 ASSERT(svgStyle);
111 if (svgStyle->isVerticalWritingMode())
115 switch (svgStyle->textAnchor()) {
RenderSVGShape.cpp 201 if (!style()->svgStyle()->hasMarkers())
264 const SVGRenderStyle* svgStyle = style()->svgStyle();
265 if (svgStyle->shapeRendering() == SR_CRISPEDGES)
269 switch (svgStyle->paintOrderType(i)) {
274 if (svgStyle->hasVisibleStroke()) {
337 const SVGRenderStyle* svgStyle = style()->svgStyle();
338 WindRule fillRule = svgStyle->fillRule();
340 fillRule = svgStyle->clipRule()
    [all...]
RenderSVGText.cpp 444 || (hitRules.canHitStroke && (style()->svgStyle()->hasStroke() || !hitRules.requireStroke))
445 || (hitRules.canHitFill && (style()->svgStyle()->hasFill() || !hitRules.requireFill))) {
507 const SVGRenderStyle* svgStyle = style()->svgStyle();
508 if (!svgStyle->hasStroke())
514 strokeBoundaries.inflate(svgStyle->strokeWidth().value(lengthContext));
SVGInlineTextBox.cpp 286 const SVGRenderStyle* svgStyle = style->svgStyle();
287 ASSERT(svgStyle);
289 bool hasFill = svgStyle->hasFill();
290 bool hasVisibleStroke = svgStyle->hasVisibleStroke();
296 const SVGRenderStyle* svgSelectionStyle = selectionStyle->svgStyle();
331 switch (svgStyle->paintOrderType(i)) {
559 const SVGRenderStyle* svgDecorationStyle = decorationStyle->svgStyle();
740 || (hitRules.canHitStroke && (renderer()->style()->svgStyle()->hasStroke() || !hitRules.requireStroke))
741 || (hitRules.canHitFill && (renderer()->style()->svgStyle()->hasFill() || !hitRules.requireFill)))
    [all...]
SVGRenderTreeAsText.cpp 253 const SVGRenderStyle* svgStyle = style->svgStyle();
270 double dashOffset = svgStyle->strokeDashOffset().value(lengthContext);
271 double strokeWidth = svgStyle->strokeWidth().value(lengthContext);
272 const Vector<SVGLength>& dashes = svgStyle->strokeDashArray();
279 writeIfNotDefault(ts, "opacity", svgStyle->strokeOpacity(), 1.0f);
281 writeIfNotDefault(ts, "miter limit", svgStyle->strokeMiterLimit(), 4.0f);
282 writeIfNotDefault(ts, "line cap", svgStyle->capStyle(), ButtCap);
283 writeIfNotDefault(ts, "line join", svgStyle->joinStyle(), MiterJoin);
296 writeIfNotDefault(ts, "opacity", svgStyle->fillOpacity(), 1.0f)
    [all...]
SVGTextLayoutEngine.cpp 247 m_isVerticalText = style->svgStyle()->isVerticalWritingMode();
432 const SVGRenderStyle* svgStyle = style->svgStyle();
433 ASSERT(svgStyle);
450 float baselineShift = baselineLayout.calculateBaselineShift(svgStyle, lengthContext);
492 float orientationAngle = baselineLayout.calculateGlyphOrientationAngle(m_isVerticalText, svgStyle, currentCharacter);
509 float spacing = spacingLayout.calculateCSSKerningAndSpacing(svgStyle, lengthContext, currentCharacter);
  /external/chromium_org/third_party/WebKit/Source/core/css/
SVGCSSComputedStyleDeclaration.cpp 105 const SVGRenderStyle* svgStyle = style->svgStyle();
106 if (!svgStyle)
111 return CSSPrimitiveValue::create(svgStyle->clipRule());
113 return CSSPrimitiveValue::create(svgStyle->floodOpacity(), CSSPrimitiveValue::CSS_NUMBER);
115 return CSSPrimitiveValue::create(svgStyle->stopOpacity(), CSSPrimitiveValue::CSS_NUMBER);
117 return CSSPrimitiveValue::create(svgStyle->colorInterpolation());
119 return CSSPrimitiveValue::create(svgStyle->colorInterpolationFilters());
121 return CSSPrimitiveValue::create(svgStyle->fillOpacity(), CSSPrimitiveValue::CSS_NUMBER);
123 return CSSPrimitiveValue::create(svgStyle->fillRule())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFEFloodElement.cpp 52 return flood->setFloodColor(style->svgStyle()->floodColor());
54 return flood->setFloodOpacity(style->svgStyle()->floodOpacity());
67 const SVGRenderStyle* svgStyle = renderer->style()->svgStyle();
69 Color color = svgStyle->floodColor();
70 float opacity = svgStyle->floodOpacity();
SVGStopElement.cpp 114 if (!style || !style->svgStyle())
117 const SVGRenderStyle* svgStyle = style->svgStyle();
118 return colorWithOverrideAlpha(svgStyle->stopColor().rgb(), svgStyle->stopOpacity());
SVGFEDropShadowElement.cpp 160 const SVGRenderStyle* svgStyle = renderer->style()->svgStyle();
162 Color color = svgStyle->floodColor();
163 float opacity = svgStyle->floodOpacity();
  /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 339 milliseconds