Home
last modified time | relevance | path

Searched refs:fillPaint (Results 1 – 9 of 9) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/chromium/
DFontLinux.cpp199 SkPaint strokePaint, fillPaint; in drawComplexText() local
201 gc->platformContext()->setupPaintForFilling(&fillPaint); in drawComplexText()
202 setupForTextPainting(&fillPaint, gc->fillColor().rgb()); in drawComplexText()
226 controller.fontPlatformDataForScriptRun()->setupPaint(&fillPaint); in drawComplexText()
227 adjustTextRenderMode(&fillPaint, gc->platformContext()); in drawComplexText()
228 …extH(controller.glyphs(), controller.length() << 1, controller.xPositions(), point.y(), fillPaint); in drawComplexText()
/external/skia/gm/
Dcomplexclip2.cpp96 SkPaint fillPaint; in onDraw() local
97 fillPaint.setColor(SkColorSetRGB(0xA0,0xDD,0xA0)); in onDraw()
108 canvas->drawRect(SkRect::MakeWH(fWidth, fHeight), fillPaint); in onDraw()
/external/webkit/Source/WebCore/rendering/svg/
DRenderSVGResource.cpp54 SVGPaint* paint = mode == ApplyToFillMode ? svgStyle->fillPaint() : svgStyle->strokePaint(); in requestPaintingResource()
74 …if (SVGPaint* visitedPaint = mode == ApplyToFillMode ? visitedStyle->svgStyle()->fillPaint() : vis… in requestPaintingResource()
DSVGResources.cpp262 … if (setFill(paintingResourceFromSVGPaint(document, style->fillPaint(), id, hasPendingResource))) in buildCachedResources()
/external/webkit/Source/WebCore/platform/graphics/android/fonts/
DFontAndroid.cpp1046 SkPaint fillPaint, strokePaint; in drawComplexText() local
1048 setupFill(&fillPaint, gc, primaryFont()); in drawComplexText()
1061 walker.fontPlatformDataForScriptRun()->setupPaint(&fillPaint); in drawComplexText()
1062 adjustTextRenderMode(&fillPaint, haveMultipleLayers); in drawComplexText()
1064 walker.length() << 1, walker.positions(), fillPaint); in drawComplexText()
/external/webkit/Source/WebCore/platform/graphics/skia/
DGraphicsContextSkia.cpp599 SkPaint fillPaint; in drawLine() local
600 fillPaint.setColor(paint.getColor()); in drawLine()
601 platformContext()->canvas()->drawRect(r1, fillPaint); in drawLine()
602 platformContext()->canvas()->drawRect(r2, fillPaint); in drawLine()
/external/webkit/Source/WebCore/rendering/style/
DSVGRenderStyle.h296 SVGPaint* fillPaint() const { return fill->paint.get(); } in fillPaint() function
324 bool hasFill() const { return fillPaint()->paintType() != SVGPaint::SVG_PAINTTYPE_NONE; } in hasFill()
/external/webkit/Source/WebCore/css/
DSVGCSSComputedStyleDeclaration.cpp136 return svgStyle->fillPaint(); in getSVGPropertyCSSValue()
DSVGCSSStyleSelector.cpp234 HANDLE_INHERIT_AND_INITIAL(fillPaint, FillPaint) in applySVGProperty()