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

1 2

  /external/webkit/WebCore/css/
SVGCSSComputedStyleDeclaration.cpp 63 const SVGRenderStyle* svgStyle = style->svgStyle();
64 if (!svgStyle)
69 return CSSPrimitiveValue::create(svgStyle->clipRule());
71 return CSSPrimitiveValue::create(svgStyle->floodOpacity(), CSSPrimitiveValue::CSS_NUMBER);
73 return CSSPrimitiveValue::create(svgStyle->stopOpacity(), CSSPrimitiveValue::CSS_NUMBER);
75 return CSSPrimitiveValue::create(svgStyle->colorInterpolation());
77 return CSSPrimitiveValue::create(svgStyle->colorInterpolationFilters());
79 return CSSPrimitiveValue::create(svgStyle->fillOpacity(), CSSPrimitiveValue::CSS_NUMBER);
81 return CSSPrimitiveValue::create(svgStyle->fillRule())
    [all...]
SVGCSSStyleSelector.cpp 52 svgstyle->set##Prop(m_parentStyle->svgStyle()->prop());\
59 svgstyle->set##Prop(SVGRenderStyle::initial##Prop());
113 SVGRenderStyle* svgstyle = m_style->accessSVGStyle(); local
132 svgstyle->setAlignmentBaseline(*primitiveValue);
144 svgstyle->setBaselineShift(BS_BASELINE);
147 svgstyle->setBaselineShift(BS_SUB);
150 svgstyle->setBaselineShift(BS_SUPER);
156 svgstyle->setBaselineShift(BS_LENGTH);
157 svgstyle->setBaselineShiftValue(primitiveValue)
    [all...]
  /external/webkit/WebCore/svg/graphics/
SVGPaintServerSolid.cpp 65 const SVGRenderStyle* svgStyle = style ? style->svgStyle() : 0;
68 if ((type & ApplyToFillTargetType) && (!style || svgStyle->hasFill())) {
69 context->setAlpha(style ? svgStyle->fillOpacity() : 1);
71 context->setFillRule(style ? svgStyle->fillRule() : RULE_NONZERO);
77 if ((type & ApplyToStrokeTargetType) && (!style || svgStyle->hasStroke())) {
78 context->setAlpha(style ? svgStyle->strokeOpacity() : 1);
SVGPaintServer.cpp 78 if (!style->svgStyle()->hasFill())
81 SVGPaint* fill = style->svgStyle()->fillPaint();
119 if (!style->svgStyle()->hasStroke())
122 SVGPaint* stroke = style->svgStyle()->strokePaint();
156 context->setStrokeThickness(SVGRenderStyle::cssPrimitiveToLength(object, style->svgStyle()->strokeWidth(), 1.0f));
157 context->setLineCap(style->svgStyle()->capStyle());
158 context->setLineJoin(style->svgStyle()->joinStyle());
159 if (style->svgStyle()->joinStyle() == MiterJoin)
160 context->setMiterLimit(style->svgStyle()->strokeMiterLimit());
163 float dashOffset = SVGRenderStyle::cssPrimitiveToLength(object, style->svgStyle()->strokeDashOffset(), 0.0f)
    [all...]
SVGPaintServerPattern.cpp 102 const SVGRenderStyle* svgStyle = style->svgStyle();
103 bool isFilled = (type & ApplyToFillTargetType) && svgStyle->hasFill();
104 bool isStroked = (type & ApplyToStrokeTargetType) && svgStyle->hasStroke();
146 context->setAlpha(svgStyle->fillOpacity());
148 context->setFillRule(svgStyle->fillRule());
151 context->setAlpha(svgStyle->strokeOpacity());
SVGPaintServerGradient.cpp 196 const SVGRenderStyle* svgStyle = style->svgStyle();
197 bool isFilled = (type & ApplyToFillTargetType) && svgStyle->hasFill();
198 bool isStroked = (type & ApplyToStrokeTargetType) && svgStyle->hasStroke();
215 context->setAlpha(svgStyle->fillOpacity());
217 context->setFillRule(svgStyle->fillRule());
220 context->setAlpha(svgStyle->strokeOpacity());
  /external/webkit/WebCore/svg/
SVGFEFloodElement.cpp 46 Color color = filterStyle->svgStyle()->floodColor();
47 float opacity = filterStyle->svgStyle()->floodOpacity();
SVGGradientElement.cpp 166 color = stopStyle->svgStyle()->stopColor();
167 opacity = stopStyle->svgStyle()->stopOpacity();
177 color = stopStyle->svgStyle()->stopColor();
178 opacity = stopStyle->svgStyle()->stopOpacity();
SVGStyledElement.cpp 225 const SVGRenderStyle* svgStyle = object->style()->svgStyle();
232 SVGResourceFilter* filter = getFilterById(document, svgStyle->filter(), object);
237 SVGResourceMasker* masker = getMaskerById(document, svgStyle->maskElement(), object);
241 SVGResourceClipper* clipper = getClipperById(document, svgStyle->clipPath(), object);
SVGFEDiffuseLightingElement.cpp 104 Color color = filterStyle->svgStyle()->lightingColor();
SVGClipPathElement.cpp 132 m_clipper->addClipData(pathData, style->svgStyle()->clipRule(), bbox);
SVGFESpecularLightingElement.cpp 121 Color color = filterStyle->svgStyle()->lightingColor();
SVGTextContentElement.cpp 131 bool isVerticalText = style->svgStyle()->writingMode() == WM_TBRL || style->svgStyle()->writingMode() == WM_TB;
SVGFont.cpp 409 isVerticalText = isVerticalWritingMode(renderObject->style()->svgStyle());
498 isVerticalText = isVerticalWritingMode(run.referencingRenderObject()->style()->svgStyle());
  /external/webkit/WebCore/rendering/
RenderPath.cpp 90 return m_path.contains(point, style()->svgStyle()->fillRule());
125 if (style()->svgStyle()->hasStroke()) {
171 style()->svgStyle()->inflateForShadow(m_cachedLocalRepaintRect);
236 if (style()->svgStyle()->shapeRendering() == SR_CRISPEDGES)
274 if ((hitRules.canHitStroke && (style()->svgStyle()->hasStroke() || !hitRules.requireStroke) && strokeContains(localPoint, hitRules.requireStroke))
275 || (hitRules.canHitFill && (style()->svgStyle()->hasFill() || !hitRules.requireFill) && fillContains(localPoint, hitRules.requireFill))) {
297 const SVGRenderStyle* svgStyle = style()->svgStyle();
298 AtomicString startMarkerId(svgStyle->startMarker());
299 AtomicString midMarkerId(svgStyle->midMarker())
    [all...]
SVGRenderSupport.cpp 64 object->style()->svgStyle()->inflateForShadow(repaintRect);
94 const SVGRenderStyle* svgStyle = style->svgStyle();
95 ASSERT(svgStyle);
104 if (ShadowData* shadow = svgStyle->shadow()) {
111 AtomicString filterId(svgStyle->filter());
114 AtomicString clipperId(svgStyle->clipPath());
115 AtomicString maskerId(svgStyle->maskElement());
183 if (style->svgStyle()->shadow())
280 SVGResourceFilter* filter = getFilterById(object->document(), object->style()->svgStyle()->filter(), object)
    [all...]
SVGRenderTreeAsText.cpp 260 const SVGRenderStyle* svgStyle = style->svgStyle();
264 writeIfNotDefault(ts, "image rendering", svgStyle->imageRendering(), SVGRenderStyle::initialImageRendering());
275 double dashOffset = SVGRenderStyle::cssPrimitiveToLength(&path, svgStyle->strokeDashOffset(), 0.0f);
277 double strokeWidth = SVGRenderStyle::cssPrimitiveToLength(&path, svgStyle->strokeWidth(), 1.0f);
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);
297 writeIfNotDefault(ts, "opacity", svgStyle->fillOpacity(), 1.0f)
    [all...]
RenderSVGContainer.cpp 72 const SVGRenderStyle* svgStyle = style()->svgStyle();
73 SVGResourceFilter* filter = getFilterById(document(), svgStyle->filter(), this);
162 style()->svgStyle()->inflateForShadow(repaintRect);
RenderSVGRoot.cpp 112 const SVGRenderStyle* svgStyle = style()->svgStyle();
113 SVGResourceFilter* filter = getFilterById(document(), svgStyle->filter(), this);
239 style()->svgStyle()->inflateForShadow(repaintRect);
257 style()->svgStyle()->inflateForShadow(repaintRect);
RenderSVGText.cpp 101 if ((hitRules.canHitStroke && (style()->svgStyle()->hasStroke() || !hitRules.requireStroke))
102 || (hitRules.canHitFill && (style()->svgStyle()->hasFill() || !hitRules.requireFill))) {
189 if (style()->svgStyle()->hasStroke()) {
190 float strokeWidth = SVGRenderStyle::cssPrimitiveToLength(this, style()->svgStyle()->strokeWidth(), 1.0f);
226 style()->svgStyle()->inflateForShadow(repaintRect);
SVGRootInlineBox.cpp 64 const SVGRenderStyle* style = text->style() ? text->style()->svgStyle() : 0;
67 const SVGRenderStyle* parentStyle = text->parent() && text->parent()->style() ? text->parent()->style()->svgStyle() : 0;
124 const SVGRenderStyle* style = text->style() ? text->style()->svgStyle() : 0;
127 const SVGRenderStyle* parentStyle = text->parent() && text->parent()->style() ? text->parent()->style()->svgStyle() : 0;
173 static inline float glyphOrientationToAngle(const SVGRenderStyle* svgStyle, bool isVerticalText, const UChar& character)
175 switch (isVerticalText ? svgStyle->glyphOrientationVertical() : svgStyle->glyphOrientationHorizontal()) {
324 const SVGRenderStyle* svgStyle = item->style()->svgStyle();
327 if (CSSPrimitiveValue* primitive = static_cast<CSSPrimitiveValue*>(svgStyle->kerning()))
    [all...]
SVGCharacterLayoutInfo.cpp 43 const SVGRenderStyle* svgStyle = item->style()->svgStyle();
46 if (svgStyle->baselineShift() == BS_LENGTH) {
47 CSSPrimitiveValue* primitive = static_cast<CSSPrimitiveValue*>(svgStyle->baselineShiftValue());
55 switch (svgStyle->baselineShift()) {
RenderForeignObject.cpp 87 style()->svgStyle()->inflateForShadow(rect);
RenderSVGImage.cpp 162 style()->svgStyle()->inflateForShadow(m_cachedLocalRepaintRect);
  /external/webkit/WebCore/rendering/style/
RenderStyle.h     [all...]

Completed in 691 milliseconds

1 2