Searched refs:ApplyToFillMode (Results 1 – 8 of 8) sorted by relevance
/external/webkit/Source/WebCore/rendering/svg/ |
D | RenderSVGResource.cpp | 46 if (mode == ApplyToFillMode) { in requestPaintingResource() 54 SVGPaint* paint = mode == ApplyToFillMode ? svgStyle->fillPaint() : svgStyle->strokePaint(); in requestPaintingResource() 74 …if (SVGPaint* visitedPaint = mode == ApplyToFillMode ? visitedStyle->svgStyle()->fillPaint() : vis… in requestPaintingResource() 107 …RenderSVGResource* uriResource = mode == ApplyToFillMode ? resources->fill() : resources->stroke(); in requestPaintingResource() 125 return requestPaintingResource(ApplyToFillMode, object, style, fallbackColor); in fillPaintingResource()
|
D | RenderSVGResourceSolidColor.cpp | 56 if (resourceMode & ApplyToFillMode) { in applyResource() 83 if (resourceMode & ApplyToFillMode) in postApplyResource()
|
D | RenderSVGPath.cpp | 157 if (fillPaintingResource->applyResource(this, style, context, ApplyToFillMode)) in fillAndStrokePath() 158 fillPaintingResource->postApplyResource(this, context, ApplyToFillMode, &m_path); in fillAndStrokePath() 162 if (fallbackResource->applyResource(this, style, context, ApplyToFillMode)) in fillAndStrokePath() 163 fallbackResource->postApplyResource(this, context, ApplyToFillMode, &m_path); in fillAndStrokePath()
|
D | RenderSVGResourceGradient.cpp | 211 context->setTextDrawingMode(resourceMode & ApplyToFillMode ? TextModeFill : TextModeStroke); in applyResource() 217 if (resourceMode & ApplyToFillMode) { in applyResource() 261 if (resourceMode & ApplyToFillMode) in applyResource()
|
D | RenderSVGResourcePattern.cpp | 153 if (resourceMode & ApplyToFillMode) { in applyResource() 166 if (resourceMode & ApplyToFillMode) { in applyResource() 190 if (resourceMode & ApplyToFillMode) in postApplyResource()
|
D | RenderSVGResource.h | 42 ApplyToFillMode = 1 << 1, enumerator
|
D | SVGInlineTextBox.cpp | 313 m_paintingResourceMode = ApplyToFillMode | ApplyToTextMode; in paint() 342 if (m_paintingResourceMode & ApplyToFillMode) in acquirePaintingResource() 515 m_paintingResourceMode = ApplyToFillMode; in paintDecoration()
|
/external/webkit/Source/WebCore/svg/ |
D | SVGFont.cpp | 526 … resourceMode = context->textDrawingMode() == TextModeStroke ? ApplyToStrokeMode : ApplyToFillMode; in drawTextUsingSVGFont()
|