/external/webkit/Source/WebCore/rendering/svg/ |
D | RenderSVGResourceMarker.cpp | 115 …rceMarker::markerTransformation(const FloatPoint& origin, float autoAngle, float strokeWidth) const in markerTransformation() 126 …form = markerContentTransformation(transform, referencePoint(), useStrokeWidth ? strokeWidth : -1); in markerTransformation() 139 …on(const AffineTransform& contentTransformation, const FloatPoint& origin, float strokeWidth) const in markerContentTransformation() 145 if (strokeWidth != -1) in markerContentTransformation() 146 transformation.scaleNonUniform(strokeWidth, strokeWidth); in markerContentTransformation()
|
D | RenderSVGResourceMarker.h | 56 …AffineTransform markerTransformation(const FloatPoint& origin, float angle, float strokeWidth) con… 71 …st AffineTransform& contentTransformation, const FloatPoint& origin, float strokeWidth = -1) const;
|
D | SVGMarkerLayoutInfo.cpp | 68 …VGResourceMarker* midMarker, RenderSVGResourceMarker* endMarker, float strokeWidth, const Path& pa… in calculateBoundaries() argument 72 m_strokeWidth = strokeWidth; in calculateBoundaries()
|
D | SVGMarkerLayoutInfo.h | 52 …rSVGResourceMarker* midMarker, RenderSVGResourceMarker* endMarker, float strokeWidth, const Path&);
|
D | SVGRenderTreeAsText.cpp | 339 double strokeWidth = svgStyle->strokeWidth().value(element); in writeStyle() local 348 writeIfNotDefault(ts, "stroke width", strokeWidth, 1.0); in writeStyle()
|
D | RenderSVGText.cpp | 258 strokeBoundaries.inflate(svgStyle->strokeWidth().value(static_cast<SVGElement*>(node()))); in strokeBoundingBox()
|
D | RenderSVGPath.cpp | 303 …tInfo.calculateBoundaries(markerStart, markerMid, markerEnd, svgStyle->strokeWidth().value(svgElem… in calculateMarkerBoundsIfNeeded()
|
D | SVGRenderSupport.cpp | 330 context->setStrokeThickness(svgStyle->strokeWidth().value(lengthContext)); in applyStrokeStyleToContext()
|
/external/skia/bench/ |
D | SkBenchmark.h | 46 strokeWidth = width; in setStrokeWidth() 51 return strokeWidth; in getStrokeWidth() 77 SkScalar strokeWidth; variable
|
D | benchmain.cpp | 223 float strokeWidth; in main() local 303 if (sscanf(strokeWidthStr, "%f", &strokeWidth) != 1) { in main() 384 bench->setStrokeWidth(strokeWidth); in main()
|
/external/skia/gm/ |
D | shadows.cpp | 8 static void setup(SkPaint* paint, SkColor c, SkScalar strokeWidth) { in setup() argument 10 if (strokeWidth < 0) { in setup() 14 paint->setStrokeWidth(strokeWidth); in setup()
|
/external/skia/src/animator/ |
D | SkDrawPaint.cpp | 62 SK_MEMBER(strokeWidth, Float), 81 strokeWidth(SK_ScalarNaN), style((SkPaint::Style) -1), in SkDrawPaint() 259 if (SkScalarIsNaN(strokeWidth) == false) in setupPaint() 260 paint->setStrokeWidth(strokeWidth); in setupPaint()
|
D | SkDrawPaint.h | 66 SkScalar strokeWidth; variable
|
/external/webkit/Source/WebCore/platform/graphics/ |
D | GraphicsContext.cpp | 716 void GraphicsContext::adjustLineToPixelBoundaries(FloatPoint& p1, FloatPoint& p2, float strokeWidth… in adjustLineToPixelBoundaries() argument 724 p1.setY(p1.y() + strokeWidth); in adjustLineToPixelBoundaries() 725 p2.setY(p2.y() - strokeWidth); in adjustLineToPixelBoundaries() 727 p1.setX(p1.x() + strokeWidth); in adjustLineToPixelBoundaries() 728 p2.setX(p2.x() - strokeWidth); in adjustLineToPixelBoundaries() 732 if (static_cast<int>(strokeWidth) % 2) { //odd in adjustLineToPixelBoundaries()
|
D | GraphicsContext.h | 582 …static void adjustLineToPixelBoundaries(FloatPoint& p1, FloatPoint& p2, float strokeWidth, StrokeS…
|
/external/skia/src/core/ |
D | SkPictureFlat.cpp | 173 SkScalar strokeWidth = buffer.readScalar(); in dump() local 174 if (strokeWidth != defaultPaint.getStrokeWidth()) in dump() 176 "strokeWidth:%g ", SkScalarToFloat(strokeWidth)); in dump()
|
D | SkPaint.cpp | 1264 SkScalar strokeWidth = paint.getStrokeWidth(); in MakeRec() local 1280 strokeWidth = extra; // ignore paint's strokeWidth if it was "fill" in MakeRec() 1282 strokeWidth += extra; in MakeRec() 1291 if (style != SkPaint::kFill_Style && strokeWidth > 0) { in MakeRec() 1292 rec->fFrameWidth = strokeWidth; in MakeRec()
|
D | SkPicturePlayback.cpp | 1049 SkScalar strokeWidth = paint.getStrokeWidth(); in dumpPaint() local 1050 if (strokeWidth != defaultPaint.getStrokeWidth()) in dumpPaint() 1052 "{kStrokeWidth, %g}, ", SkScalarToFloat(strokeWidth)); in dumpPaint()
|
/external/webkit/Source/WebCore/css/ |
D | SVGCSSComputedStyleDeclaration.cpp | 158 return SVGLength::toCSSPrimitiveValue(svgStyle->strokeWidth()); in getSVGPropertyCSSValue()
|
D | SVGCSSStyleSelector.cpp | 249 HANDLE_INHERIT_AND_INITIAL(strokeWidth, StrokeWidth) in applySVGProperty()
|
/external/webkit/Source/WebCore/platform/graphics/android/ |
D | FontAndroid.cpp | 108 SkScalar strokeWidth; in setupForText() local 111 strokeWidth = setupStroke(looper->addLayer(info), gc, font)->getStrokeWidth(); in setupForText() 145 p->setStrokeWidth(strokeWidth); in setupForText()
|
/external/skia/gpu/include/ |
D | GrContext.h | 285 GrScalar strokeWidth = -1,
|
/external/webkit/Source/WebCore/rendering/ |
D | InlineTextBox.cpp | 625 float strokeWidth = pseudoStyle->textStrokeWidth(); in paint() local 626 if (strokeWidth != selectionStrokeWidth) { in paint() 629 selectionStrokeWidth = strokeWidth; in paint()
|
/external/webkit/Source/WebCore/rendering/style/ |
D | SVGRenderStyle.h | 301 SVGLength strokeWidth() const { return stroke->width; } in strokeWidth() function
|
/external/webkit/Source/WebCore/platform/graphics/qt/ |
D | GraphicsContextQt.cpp | 883 float strokeWidth = strokeThickness(); in drawLineForText() local 884 if (static_cast<int>(strokeWidth) % 2) { in drawLineForText()
|