Home
last modified time | relevance | path

Searched refs:isPointInPath (Results 1 – 13 of 13) sorted by relevance

/third_party/skia/modules/canvaskit/tests/
Dcanvas2d.spec.js661 testFn: (ctx, x, y) => ctx.isPointInPath(x * SCALE, y * SCALE, 'nonzero'),
668 testFn: (ctx, x, y) => ctx.isPointInPath(x * SCALE, y * SCALE, 'evenodd'),
/third_party/flutter/skia/modules/canvaskit/tests/
Dcanvas2d.spec.js678 testFn: (ctx, x, y) => ctx.isPointInPath(x * SCALE, y * SCALE, 'nonzero'),
685 testFn: (ctx, x, y) => ctx.isPointInPath(x * SCALE, y * SCALE, 'evenodd'),
/third_party/flutter/skia/modules/canvaskit/
Dexterns.js603 CanvasRenderingContext2D.prototype.isPointInPath = function() {}; method in CanvasRenderingContext2D
/third_party/skia/modules/canvaskit/
Dexterns.js1104 CanvasRenderingContext2D.prototype.isPointInPath = function() {}; method in CanvasRenderingContext2D
/third_party/skia/modules/canvaskit/htmlcanvas/
Dcanvas2dcontext.js718 this.isPointInPath = function(x, y, fillmode) { method in CanvasRenderingContext2D
/third_party/flutter/skia/modules/canvaskit/htmlcanvas/
Dcanvas2dcontext.js731 this.isPointInPath = function(x, y, fillmode) { method in CanvasRenderingContext2D
/third_party/node/test/fixtures/wpt/interfaces/
Dhtml.idl1305 …boolean isPointInPath(unrestricted double x, unrestricted double y, optional CanvasFillRule fillRu…
1306 …boolean isPointInPath(Path2D path, unrestricted double x, unrestricted double y, optional CanvasFi…
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/ui/
Dcanvas.dart1639 /// Context2D isPointInPath. If performance becomes issue, retaining
1722 final bool result = _rawRecorder.ctx.isPointInPath(pointX, pointY);
/third_party/typescript/lib/
Dlib.webworker.d.ts812 isPointInPath(x: number, y: number, fillRule?: CanvasFillRule): boolean; method
813 isPointInPath(path: Path2D, x: number, y: number, fillRule?: CanvasFillRule): boolean; method
Dlib.dom.d.ts3383 isPointInPath(x: number, y: number, fillRule?: CanvasFillRule): boolean; method
3384 isPointInPath(path: Path2D, x: number, y: number, fillRule?: CanvasFillRule): boolean; method
/third_party/typescript/src/lib/
Dwebworker.generated.d.ts792 isPointInPath(x: number, y: number, fillRule?: CanvasFillRule): boolean; method
793 isPointInPath(path: Path2D, x: number, y: number, fillRule?: CanvasFillRule): boolean; method
Ddom.generated.d.ts3363 isPointInPath(x: number, y: number, fillRule?: CanvasFillRule): boolean; method
3364 isPointInPath(path: Path2D, x: number, y: number, fillRule?: CanvasFillRule): boolean; method
/third_party/typescript/tests/lib/
Dlib.d.ts5175 isPointInPath(x: number, y: number, fillRule?: string): boolean; method