Searched defs:cubicTo (Results 1 - 4 of 4) sorted by relevance

/external/skia/include/core/
H A DSkPath.h285 void cubicTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2,
296 void cubicTo(const SkPoint& p1, const SkPoint& p2, const SkPoint& p3) { function in class:SkPath
297 this->cubicTo(p1.fX, p1.fY, p2.fX, p2.fY, p3.fX, p3.fY);
300 /** Same as cubicTo, but the coordinates are considered relative to the
/external/skia/src/core/
H A DSkPath.cpp302 void SkPath::cubicTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2, function in class:SkPath
323 this->cubicTo(pt.fX + x1, pt.fY + y1, pt.fX + x2, pt.fY + y2,
407 this->cubicTo(rect.fLeft + rx - sx, rect.fTop,
413 this->cubicTo(rect.fLeft, rect.fBottom - ry + sy,
419 this->cubicTo(rect.fRight - rx + sx, rect.fBottom,
425 this->cubicTo(rect.fRight, rect.fTop + ry - sy,
429 this->cubicTo(rect.fRight - rx + sx, rect.fTop,
435 this->cubicTo(rect.fRight, rect.fBottom - ry + sy,
441 this->cubicTo(rect.fLeft + rx - sx, rect.fBottom,
447 this->cubicTo(rec
[all...]
H A DSkStroke.cpp85 void cubicTo(const SkPoint&, const SkPoint&, const SkPoint&);
349 fOuter.cubicTo( pts[1].fX + normalB.fX, pts[1].fY + normalB.fY,
353 fInner.cubicTo( pts[1].fX - normalB.fX, pts[1].fY - normalB.fY,
414 void SkPathStroker::cubicTo(const SkPoint& pt1, const SkPoint& pt2, function in class:SkPathStroker
612 stroker.cubicTo(pts[1], pts[2], pts[3]);
/external/webkit/WebKit/android/plugins/
H A Dandroid_npapi.h332 void (*cubicTo)(ANPPath*, float x0, float y0, float x1, float y1, member in struct:ANPPathInterfaceV0

Completed in 31 milliseconds