Home
last modified time | relevance | path

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

/external/pdfium/xfa/src/fwl/src/theme/
Dpushbuttontp.cpp42 CFX_Path strokePath; in DrawBackground() local
43 strokePath.Create(); in DrawBackground()
44 strokePath.MoveTo(rect.left + PUSHBUTTON_SIZE_Corner, rect.top); in DrawBackground()
45 strokePath.LineTo(fRight - PUSHBUTTON_SIZE_Corner, rect.top); in DrawBackground()
46 strokePath.LineTo(fRight, rect.top + PUSHBUTTON_SIZE_Corner); in DrawBackground()
47 strokePath.LineTo(fRight, fBottom - PUSHBUTTON_SIZE_Corner); in DrawBackground()
48 strokePath.LineTo(fRight - PUSHBUTTON_SIZE_Corner, fBottom); in DrawBackground()
49 strokePath.LineTo(rect.left + PUSHBUTTON_SIZE_Corner, fBottom); in DrawBackground()
50 strokePath.LineTo(rect.left, fBottom - PUSHBUTTON_SIZE_Corner); in DrawBackground()
51 strokePath.LineTo(rect.left, rect.top + PUSHBUTTON_SIZE_Corner); in DrawBackground()
[all …]
/external/skia/gm/
Dgetpostextpath.cpp15 static void strokePath(SkCanvas* canvas, const SkPath& path) { in strokePath() function
37 strokePath(canvas, path);
56 strokePath(canvas, path);
/external/mdnsresponder/mDNSPosix/
Dparselog.py201 c.strokePath()
209 c.strokePath()
221 c.strokePath()
241 c.strokePath()
/external/skia/src/core/
DSkStroke.h65 void strokePath(const SkPath& path, SkPath*) const;
DSkRemote.h100 virtual void strokePath(ID path, CommonIDs, ID stroke) = 0;
DSkStrokeRec.cpp121 stroker.strokePath(src, dst); in applyToPath()
DSkRemote.cpp219 fEncoder->strokePath(p, common, this->id(Stroke::CreateFrom(paint))); in onDrawPath()
522 void strokePath(ID path, CommonIDs common, ID stroke) override { in strokePath() function in SkRemote::Decoder
700 void strokePath(ID path, CommonIDs common, ID stroke) override { in strokePath() function in SkRemote::CachingEncoder
701 fWrapped->strokePath(path, common, stroke); in strokePath()
DSkScalerContext.cpp651 SkPath strokePath; in internalGetPath() local
652 if (rec.applyToPath(&strokePath, localPath)) { in internalGetPath()
653 localPath.swap(strokePath); in internalGetPath()
DSkStroke.cpp1346 void SkStroke::strokePath(const SkPath& src, SkPath* dst) const { in strokePath() function in SkStroke
/external/pdfium/core/src/fxge/skia/
Dfx_skia_device.cpp252 stroker.strokePath(path_data, dstPathData); in SkRasterizeStroke()