/external/pdfium/xfa/fwl/theme/ |
D | cfwl_pushbuttontp.cpp | 36 CXFA_GEPath strokePath; in DrawBackground() local 37 strokePath.MoveTo( in DrawBackground() 39 strokePath.LineTo(CFX_PointF(fRight - PUSHBUTTON_SIZE_Corner, rect.top)); in DrawBackground() 40 strokePath.LineTo(CFX_PointF(fRight, rect.top + PUSHBUTTON_SIZE_Corner)); in DrawBackground() 41 strokePath.LineTo(CFX_PointF(fRight, fBottom - PUSHBUTTON_SIZE_Corner)); in DrawBackground() 42 strokePath.LineTo(CFX_PointF(fRight - PUSHBUTTON_SIZE_Corner, fBottom)); in DrawBackground() 43 strokePath.LineTo( in DrawBackground() 45 strokePath.LineTo( in DrawBackground() 47 strokePath.LineTo( in DrawBackground() 49 strokePath.LineTo( in DrawBackground() [all …]
|
/external/skia/docs/examples/ |
D | Paint_getFillPath.cpp | 11 SkPath strokePath; in draw() local 12 strokePath.moveTo(.08f, .08f); in draw() 13 strokePath.quadTo(.09f, .08f, .17f, .17f); in draw() 19 strokePaint.getFillPath(strokePath, &fillPath, nullptr, precision); in draw() 25 strokePath.transform(scale); in draw() 27 canvas->drawPath(strokePath, strokePaint); in draw()
|
D | Paint_getFillPath_2.cpp | 10 SkPath strokePath; in draw() local 11 strokePath.moveTo(20, 20); in draw() 12 strokePath.lineTo(100, 100); in draw() 13 canvas->drawPath(strokePath, paint); in draw() 15 paint.getFillPath(strokePath, &fillPath); in draw()
|
/external/skqp/gm/ |
D | getpostextpath.cpp | 19 static void strokePath(SkCanvas* canvas, const SkPath& path) { in strokePath() function 43 strokePath(canvas, path); 64 strokePath(canvas, path);
|
/external/skia/gm/ |
D | getpostextpath.cpp | 26 static void strokePath(SkCanvas* canvas, const SkPath& path) { in strokePath() function 50 strokePath(canvas, path); 71 strokePath(canvas, path);
|
/external/mdnsresponder/mDNSPosix/ |
D | parselog.py | 201 c.strokePath() 209 c.strokePath() 221 c.strokePath() 241 c.strokePath()
|
/external/skqp/src/core/ |
D | SkStroke.h | 66 void strokePath(const SkPath& path, SkPath*) const;
|
D | SkStrokeRec.cpp | 121 stroker.strokePath(src, dst); in applyToPath()
|
D | SkScalerContext.cpp | 609 SkPath strokePath; in internalGetPath() local 610 if (rec.applyToPath(&strokePath, localPath)) { in internalGetPath() 611 localPath.swap(strokePath); in internalGetPath()
|
D | SkStroke.cpp | 1383 void SkStroke::strokePath(const SkPath& src, SkPath* dst) const { in strokePath() function in SkStroke
|
/external/skia/src/core/ |
D | SkStroke.h | 66 void strokePath(const SkPath& path, SkPath*) const;
|
D | SkScalerContext.cpp | 464 SkPath strokePath; in generateMask() local 502 if (rec.needToApply() && rec.applyToPath(&strokePath, path)) { in generateMask() 503 pathToUse = &strokePath; in generateMask() 754 SkPath strokePath; in internalGetPath() local 755 if (rec.applyToPath(&strokePath, localPath)) { in internalGetPath() 756 localPath.swap(strokePath); in internalGetPath()
|
D | SkStrokeRec.cpp | 121 stroker.strokePath(src, dst); in applyToPath()
|
D | SkStroke.cpp | 1419 void SkStroke::strokePath(const SkPath& src, SkPath* dst) const { in strokePath() function in SkStroke
|
/external/pdfium/core/fxge/skia/ |
D | fx_skia_device.cpp | 792 SkPath strokePath; in FlushPath() local 796 skPaint.getFillPath(m_skPath, &strokePath); in FlushPath() 798 Op(m_skPath, strokePath, SkPathOp::kUnion_SkPathOp, in FlushPath() 799 &strokePath)) { in FlushPath() 800 fillPath = &strokePath; in FlushPath() 802 } else if (Op(m_skPath, strokePath, SkPathOp::kDifference_SkPathOp, in FlushPath() 803 &strokePath)) { in FlushPath() 804 fillPath = &strokePath; in FlushPath() 2058 SkPath strokePath; in DrawPath() local 2062 skPaint.getFillPath(skPath, &strokePath); in DrawPath() [all …]
|
/external/skqp/docs/ |
D | SkPaint_Reference.bmh | 1598 SkPath strokePath; 1599 strokePath.moveTo(.08f, .08f); 1600 strokePath.quadTo(.09f, .08f, .17f, .17f); 1606 strokePaint.getFillPath(strokePath, &fillPath, nullptr, precision); 1612 strokePath.transform(scale); 1614 canvas->drawPath(strokePath, strokePaint); 1631 SkPath strokePath; 1632 strokePath.moveTo(20, 20); 1633 strokePath.lineTo(100, 100); 1634 canvas->drawPath(strokePath, paint); [all …]
|
/external/skqp/samplecode/ |
D | SampleAAGeometry.cpp | 1521 SkPath strokePath; in onDrawContent() local 1523 canvas->drawPath(strokePath, fSkeletonPaint); in onDrawContent()
|