Home
last modified time | relevance | path

Searched refs:strokePath (Results 1 – 17 of 17) sorted by relevance

/external/pdfium/xfa/fwl/theme/
Dcfwl_pushbuttontp.cpp36 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/
DPaint_getFillPath.cpp11 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()
DPaint_getFillPath_2.cpp10 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/
Dgetpostextpath.cpp19 static void strokePath(SkCanvas* canvas, const SkPath& path) { in strokePath() function
43 strokePath(canvas, path);
64 strokePath(canvas, path);
/external/skia/gm/
Dgetpostextpath.cpp26 static void strokePath(SkCanvas* canvas, const SkPath& path) { in strokePath() function
50 strokePath(canvas, path);
71 strokePath(canvas, path);
/external/mdnsresponder/mDNSPosix/
Dparselog.py201 c.strokePath()
209 c.strokePath()
221 c.strokePath()
241 c.strokePath()
/external/skqp/src/core/
DSkStroke.h66 void strokePath(const SkPath& path, SkPath*) const;
DSkStrokeRec.cpp121 stroker.strokePath(src, dst); in applyToPath()
DSkScalerContext.cpp609 SkPath strokePath; in internalGetPath() local
610 if (rec.applyToPath(&strokePath, localPath)) { in internalGetPath()
611 localPath.swap(strokePath); in internalGetPath()
DSkStroke.cpp1383 void SkStroke::strokePath(const SkPath& src, SkPath* dst) const { in strokePath() function in SkStroke
/external/skia/src/core/
DSkStroke.h66 void strokePath(const SkPath& path, SkPath*) const;
DSkScalerContext.cpp464 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()
DSkStrokeRec.cpp121 stroker.strokePath(src, dst); in applyToPath()
DSkStroke.cpp1419 void SkStroke::strokePath(const SkPath& src, SkPath* dst) const { in strokePath() function in SkStroke
/external/pdfium/core/fxge/skia/
Dfx_skia_device.cpp792 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/
DSkPaint_Reference.bmh1598 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/
DSampleAAGeometry.cpp1521 SkPath strokePath; in onDrawContent() local
1523 canvas->drawPath(strokePath, fSkeletonPaint); in onDrawContent()