Lines Matching refs:PathKit
2 (function(PathKit){ argument
6 PathKit.onRuntimeInitialized = function() {
9 PathKit.SkPath.prototype.addPath = function() {
52 PathKit.SkPath.prototype.arc = function(x, y, radius, startAngle, endAngle, ccw) {
57 PathKit.SkPath.prototype.arcTo = function(x1, y1, x2, y2, radius) {
62 PathKit.SkPath.prototype.bezierCurveTo = function(cp1x, cp1y, cp2x, cp2y, x, y) {
67 PathKit.SkPath.prototype.close = function() {
74 PathKit.SkPath.prototype.closePath = function() {
79 PathKit.SkPath.prototype.conicTo = function(x1, y1, x2, y2, w) {
84 PathKit.SkPath.prototype.cubicTo = function(cp1x, cp1y, cp2x, cp2y, x, y) {
89 PathKit.SkPath.prototype.dash = function(on, off, phase) {
97 …PathKit.SkPath.prototype.ellipse = function(x, y, radiusX, radiusY, rotation, startAngle, endAngle…
102 PathKit.SkPath.prototype.lineTo = function(x, y) {
107 PathKit.SkPath.prototype.moveTo = function(x, y) {
112 PathKit.SkPath.prototype.op = function(otherPath, op) {
119 PathKit.SkPath.prototype.quadraticCurveTo = function(cpx, cpy, x, y) {
124 PathKit.SkPath.prototype.quadTo = function(cpx, cpy, x, y) {
129 PathKit.SkPath.prototype.rect = function(x, y, w, h) {
134 PathKit.SkPath.prototype.simplify = function() {
141 PathKit.SkPath.prototype.stroke = function(opts) {
150 opts.cap = opts.cap || PathKit.StrokeCap.BUTT;
151 opts.join = opts.join || PathKit.StrokeJoin.MITER;
158 PathKit.SkPath.prototype.transform = function() {
178 PathKit.SkPath.prototype.trim = function(startT, stopT, isComplement) {