/external/skqp/experimental/canvaskit/htmlcanvas/ |
D | path2d.js | 3 function arc(skpath, x, y, radius, startAngle, endAngle, ccw) { argument 6 ellipse(skpath, x, y, radius, radius, 0, startAngle, endAngle, ccw); 61 startAngle, endAngle, ccw) { argument 80 if (!ccw && (endAngle - startAngle) >= tao) { 83 } else if (ccw && (startAngle - endAngle) >= tao) { 86 } else if (!ccw && startAngle > endAngle) { 88 } else if (ccw && startAngle < endAngle) { 169 this.arc = function(x, y, radius, startAngle, endAngle, ccw) { argument 170 arc(this._path, x, y, radius, startAngle, endAngle, ccw); 186 startAngle, endAngle, ccw) { argument [all …]
|
/external/skia/modules/canvaskit/htmlcanvas/ |
D | path2d.js | 3 function arc(skpath, x, y, radius, startAngle, endAngle, ccw) { argument 6 ellipse(skpath, x, y, radius, radius, 0, startAngle, endAngle, ccw); 61 startAngle, endAngle, ccw) { argument 80 if (!ccw && (endAngle - startAngle) >= tao) { 83 } else if (ccw && (startAngle - endAngle) >= tao) { 86 } else if (!ccw && startAngle > endAngle) { 88 } else if (ccw && startAngle < endAngle) { 169 this.arc = function(x, y, radius, startAngle, endAngle, ccw) { argument 170 arc(this._path, x, y, radius, startAngle, endAngle, ccw); 186 startAngle, endAngle, ccw) { argument [all …]
|
/external/skqp/tests/ |
D | PathOpsAngleIdeas.cpp | 38 bool ccw; member 251 result->ccw = refCCW; in orderTRange() 314 bestCCW, tRange.ccw, lowerRange->tMin, upperRange->tMin, r, in bruteMinT() 317 if (bestCCW >= 0 && bestCCW != (int) tRange.ccw) { in bruteMinT() 325 bestCCW = tRange.ccw; in bruteMinT() 352 bestCCW, tRange.ccw, lowerRange->tMin, upperRange->tMin, r, in bruteMinT() 355 if (bestCCW != (int) tRange.ccw || upperRange->tMin < tRange.tMin) { in bruteMinT() 356 bestCCW = tRange.ccw; in bruteMinT() 395 bool ccw) { in bruteForce() argument 403 REPORTER_ASSERT(reporter, angle > 3.998 || ccw == upperRange.ccw); in bruteForce() [all …]
|
/external/skia/tests/ |
D | PathOpsAngleIdeas.cpp | 38 bool ccw; member 251 result->ccw = refCCW; in orderTRange() 314 bestCCW, tRange.ccw, lowerRange->tMin, upperRange->tMin, r, in bruteMinT() 317 if (bestCCW >= 0 && bestCCW != (int) tRange.ccw) { in bruteMinT() 325 bestCCW = tRange.ccw; in bruteMinT() 352 bestCCW, tRange.ccw, lowerRange->tMin, upperRange->tMin, r, in bruteMinT() 355 if (bestCCW != (int) tRange.ccw || upperRange->tMin < tRange.tMin) { in bruteMinT() 356 bestCCW = tRange.ccw; in bruteMinT() 395 bool ccw) { in bruteForce() argument 403 REPORTER_ASSERT(reporter, angle > 3.998 || ccw == upperRange.ccw); in bruteForce() [all …]
|
/external/skia/modules/pathkit/ |
D | externs.js | 42 _arc: function(x, y, radius, startAngle, endAngle, ccw) {}, argument 49 _ellipse: function(x, y, radiusX, radiusY, rotation, startAngle, endAngle, ccw) {}, argument 90 PathKit.SkPath.prototype.arc = function(x, y, radius, startAngle, endAngle, ccw) {}; argument 98 …kPath.prototype.ellipse = function(x, y, radiusX, radiusY, rotation, startAngle, endAngle, ccw) {}; argument
|
D | chaining.js | 52 PathKit.SkPath.prototype.arc = function(x, y, radius, startAngle, endAngle, ccw) { argument 53 this._arc(x, y, radius, startAngle, endAngle, !!ccw); 97 ….SkPath.prototype.ellipse = function(x, y, radiusX, radiusY, rotation, startAngle, endAngle, ccw) { argument 98 this._ellipse(x, y, radiusX, radiusY, rotation, startAngle, endAngle, !!ccw);
|
D | pathkit_wasm_bindings.cpp | 325 SkScalar startAngle, SkScalar endAngle, bool ccw) { in ApplyAddArc() argument 328 const auto sweep = SkRadiansToDegrees(endAngle - startAngle) - 360 * ccw; in ApplyAddArc() 334 SkScalar rotation, SkScalar startAngle, SkScalar endAngle, bool ccw) { in ApplyEllipse() argument 339 const auto sweep = SkRadiansToDegrees(endAngle - startAngle) - (360 * ccw); in ApplyEllipse()
|
/external/skqp/modules/pathkit/ |
D | externs.js | 42 _arc: function(x, y, radius, startAngle, endAngle, ccw) {}, argument 49 _ellipse: function(x, y, radiusX, radiusY, rotation, startAngle, endAngle, ccw) {}, argument 90 PathKit.SkPath.prototype.arc = function(x, y, radius, startAngle, endAngle, ccw) {}; argument 98 …kPath.prototype.ellipse = function(x, y, radiusX, radiusY, rotation, startAngle, endAngle, ccw) {}; argument
|
D | chaining.js | 52 PathKit.SkPath.prototype.arc = function(x, y, radius, startAngle, endAngle, ccw) { argument 53 this._arc(x, y, radius, startAngle, endAngle, !!ccw); 97 ….SkPath.prototype.ellipse = function(x, y, radiusX, radiusY, rotation, startAngle, endAngle, ccw) { argument 98 this._ellipse(x, y, radiusX, radiusY, rotation, startAngle, endAngle, !!ccw);
|
D | pathkit_wasm_bindings.cpp | 325 SkScalar startAngle, SkScalar endAngle, bool ccw) { in ApplyAddArc() argument 328 const auto sweep = SkRadiansToDegrees(endAngle - startAngle) - 360 * ccw; in ApplyAddArc() 334 SkScalar rotation, SkScalar startAngle, SkScalar endAngle, bool ccw) { in ApplyEllipse() argument 339 const auto sweep = SkRadiansToDegrees(endAngle - startAngle) - (360 * ccw); in ApplyEllipse()
|
/external/mesa3d/src/gallium/drivers/svga/ |
D | svga_state_rss.c | 150 int cw, ccw; in emit_rss_vgpu9() local 157 ccw = 0; in emit_rss_vgpu9() 161 ccw = 1; in emit_rss_vgpu9() 175 EMIT_RS(svga, curr->stencil[ccw].func, CCWSTENCILFUNC); in emit_rss_vgpu9() 176 EMIT_RS(svga, curr->stencil[ccw].fail, CCWSTENCILFAIL); in emit_rss_vgpu9() 177 EMIT_RS(svga, curr->stencil[ccw].zfail, CCWSTENCILZFAIL); in emit_rss_vgpu9() 178 EMIT_RS(svga, curr->stencil[ccw].pass, CCWSTENCILPASS); in emit_rss_vgpu9()
|
/external/skqp/src/pathops/ |
D | SkPathOpsWinding.cpp | 280 bool ccw = ccw_dxdy(hit->fSlope, dir); in sortableTop() local 282 hit->fValid, operand, span ? span->debugID() : -1, ccw); in sortableTop() 298 bool ccw = ccw_dxdy(hit->fSlope, dir); in sortableTop() local 324 int windValue = ccw ? -span->windValue() : span->windValue(); in sortableTop() 325 int oppValue = ccw ? -span->oppValue() : span->oppValue(); in sortableTop() 356 hitSegment->contour()->setCcw(ccw); in sortableTop()
|
/external/skia/src/pathops/ |
D | SkPathOpsWinding.cpp | 280 bool ccw = ccw_dxdy(hit->fSlope, dir); in sortableTop() local 282 hit->fValid, operand, span ? span->debugID() : -1, ccw); in sortableTop() 298 bool ccw = ccw_dxdy(hit->fSlope, dir); in sortableTop() local 324 int windValue = ccw ? -span->windValue() : span->windValue(); in sortableTop() 325 int oppValue = ccw ? -span->oppValue() : span->oppValue(); in sortableTop() 356 hitSegment->contour()->setCcw(ccw); in sortableTop()
|
/external/skqp/src/core/ |
D | SkStrokerPriv.cpp | 148 bool ccw; in MiterJoiner() local 158 ccw = !is_clockwise(before, after); in MiterJoiner() 159 if (ccw) { in MiterJoiner() 194 if (ccw) { in MiterJoiner()
|
/external/skia/src/core/ |
D | SkStrokerPriv.cpp | 148 bool ccw; in MiterJoiner() local 158 ccw = !is_clockwise(before, after); in MiterJoiner() 159 if (ccw) { in MiterJoiner() 194 if (ccw) { in MiterJoiner()
|
/external/pdfium/third_party/agg23/ |
D | 0000-bug-466.patch | 9 - if(!ccw) { 13 + if (!ccw) {
|
/external/skia/modules/canvaskit/ |
D | interface.js | 183 var ccw = arguments[1] || false; 184 this._addRect(r.fLeft, r.fTop, r.fRight, r.fBottom, ccw); 220 var ccw = args[args.length - 1]; 221 this._addRoundRect(r.fLeft, r.fTop, r.fRight, r.fBottom, rptr, ccw); 224 this._addRoundRect(a[0], a[1], a[2], a[3], rptr, ccw); 230 CanvasKit.SkPath.prototype.arc = function(x, y, radius, startAngle, endAngle, ccw) { argument 234 var sweep = radiansToDegrees(endAngle - startAngle) - (360 * !!ccw);
|
/external/skqp/experimental/canvaskit/ |
D | interface.js | 184 var ccw = arguments[1] || false; 185 this._addRect(r.fLeft, r.fTop, r.fRight, r.fBottom, ccw); 221 var ccw = args[args.length - 1]; 222 this._addRoundRect(r.fLeft, r.fTop, r.fRight, r.fBottom, rptr, ccw); 225 this._addRoundRect(a[0], a[1], a[2], a[3], rptr, ccw); 231 CanvasKit.SkPath.prototype.arc = function(x, y, radius, startAngle, endAngle, ccw) { argument 235 var sweep = radiansToDegrees(endAngle - startAngle) - (360 * !!ccw);
|
/external/mesa3d/src/gallium/auxiliary/draw/ |
D | draw_pipe_offset.c | 157 boolean ccw = header->det < 0.0f; in offset_first_tri() local 158 if (ccw != rast->front_ccw) in offset_first_tri()
|
D | draw_pipe_cull.c | 175 unsigned ccw = (header->det < 0); in cull_tri() local 176 unsigned face = ((ccw == cull_stage(stage)->front_ccw) ? in cull_tri()
|
/external/deqp-deps/glslang/Test/baseResults/ |
D | 450.tese.out | 6 ERROR: 0:20: 'ccw' : can only apply to a standalone qualifier 55 triangle order = ccw
|
/external/deqp-deps/glslang/Test/ |
D | 450.tese | 20 layout(ccw) in float f5[]; // ERROR, must be standalone
|
D | spv.400.tese | 3 layout(triangles, ccw) in;
|
/external/mesa3d/src/compiler/ |
D | shader_info.h | 179 bool ccw; member
|
/external/skia/gm/ |
D | addarc.cpp | 209 SkScalar end, bool ccw, bool callArcTo) { 211 SkScalar sweep = ccw ? end - start : start - end;
|