/external/u-boot/lib/efi_selftest/ |
D | efi_selftest_bitblt.c | 32 static void ellipse(efi_uintn_t x, efi_uintn_t y, in ellipse() function 138 ellipse(x, y, 35, 55, 43, 75, BLACK, &pix); in setup() 139 ellipse(x, y, 36, 56, 42, 74, LIGHT_BLUE, &pix); in setup() 141 ellipse(x, y, 35, 75, 43, 95, BLACK, &pix); in setup() 142 ellipse(x, y, 36, 76, 42, 94, LIGHT_BLUE, &pix); in setup() 148 ellipse(x, y, 120, 10, 160, 50, BLACK, &pix); in setup() 149 ellipse(x, y, 121, 11, 159, 59, YELLOW, &pix); in setup() 150 ellipse(x, y, 130, 20, 150, 40, BLACK, &pix); in setup() 151 ellipse(x, y, 131, 21, 149, 49, DARK_BLUE, &pix); in setup() 153 ellipse(x, y, 132, 10, 138, 20, BLACK, &pix); in setup() [all …]
|
/external/skqp/src/gpu/effects/ |
D | GrEllipseEffect.fp | 18 // The ellipse uniform is (center.x, center.y, 1 / rx^2, 1 / ry^2) 20 uniform float4 ellipse; 60 pdman.set4f(ellipse, center.fX, center.fY, invRXSqd, invRYSqd); 67 // d is the offset to the ellipse center 68 float2 d = sk_FragCoord.xy - ellipse.xy; 76 float2 Z = d * ellipse.zw;
|
D | GrEllipseEffect.cpp | 71 UniformHandle& ellipse = fEllipseVar; in onSetData() local 72 (void)ellipse; in onSetData() 96 pdman.set4f(ellipse, center.fX, center.fY, invRXSqd, invRYSqd); in onSetData()
|
/external/skia/src/gpu/effects/ |
D | GrEllipseEffect.fp | 18 // The ellipse uniform is (center.x, center.y, 1 / rx^2, 1 / ry^2) 20 uniform float4 ellipse; 67 pdman.set4f(ellipse, center.fX, center.fY, invRXSqd, invRYSqd); 74 // d is the offset to the ellipse center 75 float2 d = sk_FragCoord.xy - ellipse.xy; 83 float2 Z = d * ellipse.zw;
|
D | GrEllipseEffect.cpp | 72 UniformHandle& ellipse = fEllipseVar; in onSetData() local 73 (void)ellipse; in onSetData() 97 pdman.set4f(ellipse, center.fX, center.fY, invRXSqd, invRYSqd); in onSetData()
|
/external/skqp/experimental/canvaskit/htmlcanvas/ |
D | path2d.js | 6 ellipse(skpath, x, y, radius, radius, 0, startAngle, endAngle, ccw); 60 function ellipse(skpath, x, y, radiusX, radiusY, rotation, function 185 this.ellipse = function(x, y, radiusX, radiusY, rotation, method in Path2D 187 ellipse(this._path, x, y, radiusX, radiusY, rotation,
|
/external/libxml2/result/ |
D | svg2.sax | 51 SAX.startElement(ellipse, cx='182', cy='127', major='37', minor='31', angle='90') 52 SAX.endElement(ellipse) 149 SAX.startElement(ellipse, cx='208', cy='180', major='45', minor='31', angle='0') 150 SAX.endElement(ellipse)
|
D | svg2.sax2 | 51 SAX.startElementNs(ellipse, NULL, NULL, 0, 5, 0, cx='182"...', 3, cy='127"...', 3, major='37" ...',… 52 SAX.endElementNs(ellipse, NULL, NULL) 149 SAX.startElementNs(ellipse, NULL, NULL, 0, 5, 0, cx='208"...', 3, cy='180"...', 3, major='45" ...',… 150 SAX.endElementNs(ellipse, NULL, NULL)
|
D | svg2.rde | 44 2 1 ellipse 1 0 140 2 1 ellipse 1 0
|
D | svg2.rdr | 44 2 1 ellipse 1 0 140 2 1 ellipse 1 0
|
/external/skia/modules/canvaskit/htmlcanvas/ |
D | path2d.js | 6 ellipse(skpath, x, y, radius, radius, 0, startAngle, endAngle, ccw); 60 function ellipse(skpath, x, y, radiusX, radiusY, rotation, function 185 this.ellipse = function(x, y, radiusX, radiusY, rotation, method in Path2D 187 ellipse(this._path, x, y, radiusX, radiusY, rotation,
|
/external/skqp/src/gpu/ops/ |
D | GrOvalOpFactory.cpp | 1642 const SkRect& ellipse, in Make() argument 1646 params.fCenter = SkPoint::Make(ellipse.centerX(), ellipse.centerY()); in Make() 1648 SkScalar ellipseXRadius = SkScalarHalf(ellipse.width()); in Make() 1649 SkScalar ellipseYRadius = SkScalarHalf(ellipse.height()); in Make() 1778 for (const auto& ellipse : fEllipses) { in onPrepareDraws() local 1779 GrVertexColor color(ellipse.fColor, fWideColor); in onPrepareDraws() 1780 SkScalar xRadius = ellipse.fXRadius; in onPrepareDraws() 1781 SkScalar yRadius = ellipse.fYRadius; in onPrepareDraws() 1787 SkScalarInvert(ellipse.fInnerXRadius), in onPrepareDraws() 1788 SkScalarInvert(ellipse.fInnerYRadius) in onPrepareDraws() [all …]
|
/external/skia/src/gpu/ops/ |
D | GrOvalOpFactory.cpp | 1724 const SkRect& ellipse, in Make() argument 1728 params.fCenter = SkPoint::Make(ellipse.centerX(), ellipse.centerY()); in Make() 1730 SkScalar ellipseXRadius = SkScalarHalf(ellipse.width()); in Make() 1731 SkScalar ellipseYRadius = SkScalarHalf(ellipse.height()); in Make() 1876 for (const auto& ellipse : fEllipses) { in onPrepareDraws() local 1877 GrVertexColor color(ellipse.fColor, fWideColor); in onPrepareDraws() 1878 SkScalar xRadius = ellipse.fXRadius; in onPrepareDraws() 1879 SkScalar yRadius = ellipse.fYRadius; in onPrepareDraws() 1885 SkScalarInvert(ellipse.fInnerXRadius), in onPrepareDraws() 1886 SkScalarInvert(ellipse.fInnerYRadius) in onPrepareDraws() [all …]
|
/external/libxml2/result/noent/ |
D | svg2.sax2 | 51 SAX.startElementNs(ellipse, NULL, NULL, 0, 5, 0, cx='182"...', 3, cy='127"...', 3, major='37" ...',… 52 SAX.endElementNs(ellipse, NULL, NULL) 149 SAX.startElementNs(ellipse, NULL, NULL, 0, 5, 0, cx='208"...', 3, cy='180"...', 3, major='45" ...',… 150 SAX.endElementNs(ellipse, NULL, NULL)
|
/external/skqp/experimental/canvaskit/tests/ |
D | canvas2d.spec.js | 325 ctx.ellipse(130, 25, 30, 10, -1*Math.PI/8, Math.PI/6, 1.5*Math.PI) 344 ctx.ellipse(155, 100, 10, 15, Math.PI/8, 100.1 * Math.PI, Math.PI, true); 347 ctx.ellipse(180, 100, 10, 15, Math.PI/8, Math.PI, 100.1 * Math.PI, true); 452 ctx.ellipse(10, 290, 30, 30, 0, 0, Math.PI * 2); 455 ctx.ellipse(10, 290, 30, 60, 0, 0, Math.PI * 2); 460 ctx.ellipse(10, 290, 30, 90, 0, 0, Math.PI * 2); 881 path.ellipse(130, 25, 30, 10, -1*Math.PI/8, Math.PI/6, 1.5*Math.PI)
|
/external/skia/modules/canvaskit/tests/ |
D | canvas2d.spec.js | 307 ctx.ellipse(130, 25, 30, 10, -1*Math.PI/8, Math.PI/6, 1.5*Math.PI) 326 ctx.ellipse(155, 100, 10, 15, Math.PI/8, 100.1 * Math.PI, Math.PI, true); 329 ctx.ellipse(180, 100, 10, 15, Math.PI/8, Math.PI, 100.1 * Math.PI, true); 434 ctx.ellipse(10, 290, 30, 30, 0, 0, Math.PI * 2); 437 ctx.ellipse(10, 290, 30, 60, 0, 0, Math.PI * 2); 442 ctx.ellipse(10, 290, 30, 90, 0, 0, Math.PI * 2); 863 path.ellipse(130, 25, 30, 10, -1*Math.PI/8, Math.PI/6, 1.5*Math.PI)
|
/external/skqp/src/svg/ |
D | SkSVGDevice.cpp | 749 AutoElement ellipse("ellipse", fWriter, fResourceBucket.get(), MxCp(this), paint); in drawOval() local 750 ellipse.addAttribute("cx", oval.centerX()); in drawOval() 751 ellipse.addAttribute("cy", oval.centerY()); in drawOval() 752 ellipse.addAttribute("rx", oval.width() / 2); in drawOval() 753 ellipse.addAttribute("ry", oval.height() / 2); in drawOval()
|
/external/skia/src/svg/ |
D | SkSVGDevice.cpp | 748 AutoElement ellipse("ellipse", fWriter, fResourceBucket.get(), MxCp(this), paint); in drawOval() local 749 ellipse.addAttribute("cx", oval.centerX()); in drawOval() 750 ellipse.addAttribute("cy", oval.centerY()); in drawOval() 751 ellipse.addAttribute("rx", oval.width() / 2); in drawOval() 752 ellipse.addAttribute("ry", oval.height() / 2); in drawOval()
|
/external/skia/modules/canvaskit/ |
D | externs.js | 531 CanvasRenderingContext2D.prototype.ellipse = function() {}; method in CanvasRenderingContext2D 566 Path2D.prototype.ellipse = function() {}; method in Path2D
|
/external/skqp/experimental/canvaskit/ |
D | externs.js | 512 CanvasRenderingContext2D.prototype.ellipse = function() {}; method in CanvasRenderingContext2D 547 Path2D.prototype.ellipse = function() {}; method in Path2D
|
/external/ImageMagick/Magick++/fuzz/dictionaries/ |
D | mvg.dict | 47 "ellipse"
|
/external/skqp/modules/pathkit/tests/ |
D | path2d.spec.js | 49 secondPath.ellipse(130, 25, 30, 10, -1*Math.PI/8, Math.PI/6, 1.5*Math.PI, false);
|
/external/skia/modules/pathkit/tests/ |
D | path2d.spec.js | 49 secondPath.ellipse(130, 25, 30, 10, -1*Math.PI/8, Math.PI/6, 1.5*Math.PI, false);
|
/external/skia/modules/pathkit/ |
D | externs.js | 98 PathKit.SkPath.prototype.ellipse = function(x, y, radiusX, radiusY, rotation, startAngle, endAngle,… method in PathKit.SkPath
|
/external/skqp/modules/pathkit/ |
D | externs.js | 98 PathKit.SkPath.prototype.ellipse = function(x, y, radiusX, radiusY, rotation, startAngle, endAngle,… method in PathKit.SkPath
|