Home
last modified time | relevance | path

Searched refs:circle (Results 1 – 25 of 322) sorted by relevance

12345678910>>...13

/third_party/gstreamer/gstplugins_bad/gst/geometrictransform/
Dgstcircle.c93 GST_ELEMENT_REGISTER_DEFINE_WITH_CODE (circle, "circle", GST_RANK_NONE,
101 GstCircle *circle; in gst_circle_set_property() local
107 circle = GST_CIRCLE_CAST (object); in gst_circle_set_property()
109 GST_OBJECT_LOCK (circle); in gst_circle_set_property()
113 if (v != circle->angle) { in gst_circle_set_property()
114 circle->angle = v; in gst_circle_set_property()
120 if (v != circle->spread_angle) { in gst_circle_set_property()
121 circle->spread_angle = v; in gst_circle_set_property()
127 if (h != circle->height) { in gst_circle_set_property()
128 circle->height = h; in gst_circle_set_property()
[all …]
/third_party/flutter/flutter/packages/flutter/test/painting/
Dstadium_border_test.dart40 const CircleBorder circle = CircleBorder(side: BorderSide.none);
51 expect(circle.getOuterPath(rect), looksLikeC);
52 expect(ShapeBorder.lerp(stadium, circle, 0.1).getOuterPath(rect), looksLikeS);
53 expect(ShapeBorder.lerp(stadium, circle, 0.9).getOuterPath(rect), looksLikeC);
54 …expect(ShapeBorder.lerp(ShapeBorder.lerp(stadium, circle, 0.9), stadium, 0.1).getOuterPath(rect), …
55 …expect(ShapeBorder.lerp(ShapeBorder.lerp(stadium, circle, 0.9), stadium, 0.9).getOuterPath(rect), …
56 …expect(ShapeBorder.lerp(ShapeBorder.lerp(stadium, circle, 0.1), circle, 0.1).getOuterPath(rect), l…
57 …expect(ShapeBorder.lerp(ShapeBorder.lerp(stadium, circle, 0.1), circle, 0.9).getOuterPath(rect), l…
58 …expect(ShapeBorder.lerp(ShapeBorder.lerp(stadium, circle, 0.1), ShapeBorder.lerp(stadium, circle, …
59 …expect(ShapeBorder.lerp(ShapeBorder.lerp(stadium, circle, 0.1), ShapeBorder.lerp(stadium, circle, …
[all …]
/third_party/typescript/tests/baselines/reference/
DexhaustiveSwitchStatements1.types149 interface Circle { kind: "circle"; radius: number; }
150 >kind : "circle"
168 >s.kind : "square" | "rectangle" | "circle" | "triangle"
170 >kind : "square" | "rectangle" | "circle" | "triangle"
196 case "circle": area = Math.PI * s.radius * s.radius; break;
197 >"circle" : "circle"
244 … case "rectangle": return s.width * s.height; case "circle": return Math.PI *…
246 … case "rectangle": return s.width * s.height; case "circle": return Math.PI *…
247 … case "rectangle": return s.width * s.height; case "circle": return Math.PI *…
248 … case "rectangle": return s.width * s.height; case "circle": return Math.PI *…
[all …]
DdiscriminatedUnionTypes1.types22 kind: "circle";
23 >kind : "circle"
38 >s.kind : "square" | "rectangle" | "circle"
40 >kind : "square" | "rectangle" | "circle"
52 else if (s.kind === "circle") {
53 >s.kind === "circle" : boolean
54 >s.kind : "rectangle" | "circle"
56 >kind : "rectangle" | "circle"
57 >"circle" : "circle"
99 >s.kind : "square" | "rectangle" | "circle"
[all …]
DpartiallyDiscriminantedUnions.types63 class Circle { kind: "circle"; }
65 >kind : "circle"
95 if (s.kind === "circle") {
96 >s.kind === "circle" : boolean
97 >s.kind : "square" | "circle"
99 >kind : "square" | "circle"
100 >"circle" : "circle"
DexhaustiveSwitchStatements1.errors.txt66 interface Circle { kind: "circle"; radius: number; }
77 case "circle": area = Math.PI * s.radius * s.radius; break;
89 case "circle": return Math.PI * s.radius * s.radius;
157 kind: "circle";
167 case "circle":
171 case "circle":
183 case "circle":
187 case "circle":
DtypeGuardNarrowsIndexedAccessOfKnownProperty.types23 ["dash-ok"]: "circle";
24 >["dash-ok"] : "circle"
54 >s['dash-ok'] : "square" | "rectangle" | "circle"
78 case "circle": return Math.PI * s['radius'] * s.radius;
79 >"circle" : "circle"
98 >s[0]["sub"].under["shape"]["dash-ok"] : "square" | "rectangle" | "circle"
162 …case "circle": return Math.PI * s[0].sub.under["shape"].radius * s[0]["sub"].under.shape["radius"];
163 >"circle" : "circle"
/third_party/flutter/skia/src/gpu/effects/
DGrCircleEffect.fp14 // The circle uniform is (center.x, center.y, radius + 0.5, 1 / (radius + 0.5)) for regular
16 uniform float4 circle;
42 pdman.set4f(circle, center.fX, center.fY, effectiveRadius,
50 // TODO: Right now the distance to circle calculation is performed in a space normalized to the
56 d = half((length((circle.xy - sk_FragCoord.xy) * circle.w) - 1.0) * circle.z);
58 d = half((1.0 - length((circle.xy - sk_FragCoord.xy) * circle.w)) * circle.z);
DGrCircleBlurFragmentProcessor.fp14 // x, y - the center of the circle
25 const SkRect& circle, float sigma);
67 // Applies the 1D half kernel vertically at points along the x axis to a circle centered at the
78 // In the column at x we exit the circle at +y and -y
95 // Apply a Gaussian at point (evalX, 0) to a circle centered at the origin with radius circleR.
118 // Since we applied a half kernel in y we multiply acc by 2 (the circle is symmetric about
123 // This function creates a profile of a blurred circle. It does this by computing a kernel for
125 // an array of vertical applications of the half kernel to the circle along the x axis. The
188 const SkRect& circle,
191 float circleR = circle.width() / 2.0f;
[all …]
/third_party/flutter/flutter/packages/flutter/test/widgets/
Doverscroll_indicator_test.dart13 final Matcher doesNotOverscroll = isNot(paints..circle());
55 expect(painter, paints..circle(color: const Color(0x0DFFFFFF)));
88 expect(outerPainter, paints..circle());
89 expect(innerPainter, paints..circle());
106 expect(painter, paints..circle(x: 400.0));
180 …expect(painter, paints..save()..circle()..restore()..save()..scale(y: -1.0)..restore()..restore());
201 …expect(painter, paints..save()..scale(y: -1.0)..restore()..save()..circle()..restore()..restore());
222 expect(painter, paints..circle());
223 expect(painter, isNot(paints..circle()..circle()));
225 expect(painter, paints..circle()..circle());
[all …]
/third_party/skia/gm/
Dcrbug_1086705.cpp30 SkPathBuilder circle; variable
31 circle.moveTo(circleVertices[0]);
33 circle.lineTo(circleVertices[i]);
35 circle.close();
37 canvas->drawPath(circle.detach(), paint);
/third_party/flutter/flutter/packages/flutter/test/material/
Dslider_test.dart629 expect(sliderBox, paints..circle(color: sliderTheme.thumbColor));
630 expect(sliderBox, isNot(paints..circle(color: sliderTheme.disabledThumbColor)));
633 expect(sliderBox, isNot(paints..circle(color: sliderTheme.activeTickMarkColor)));
634 expect(sliderBox, isNot(paints..circle(color: sliderTheme.inactiveTickMarkColor)));
639 expect(sliderBox, paints..circle(color: customColor1));
640 expect(sliderBox, isNot(paints..circle(color: sliderTheme.thumbColor)));
641 expect(sliderBox, isNot(paints..circle(color: sliderTheme.disabledThumbColor)));
648 expect(sliderBox, paints..circle(color: sliderTheme.thumbColor));
649 expect(sliderBox, isNot(paints..circle(color: sliderTheme.disabledThumbColor)));
656 expect(sliderBox, paints..circle(color: customColor1));
[all …]
Dswitch_list_tile_test.dart43 ..circle(color: const Color(0x33000000))
44 ..circle(color: const Color(0x24000000))
45 ..circle(color: const Color(0x1f000000))
46 ..circle(color: Colors.yellow[500]),
56 ..circle(color: const Color(0x33000000))
57 ..circle(color: const Color(0x24000000))
58 ..circle(color: const Color(0x1f000000))
59 ..circle(color: Colors.red[500]),
Dswitch_test.dart301 ..circle(color: const Color(0x33000000))
302 ..circle(color: const Color(0x24000000))
303 ..circle(color: const Color(0x1f000000))
304 ..circle(color: Colors.grey.shade50),
317 ..circle(color: const Color(0x33000000))
318 ..circle(color: const Color(0x24000000))
319 ..circle(color: const Color(0x1f000000))
320 ..circle(color: Colors.blue[600]),
351 ..circle(color: const Color(0x33000000))
352 ..circle(color: const Color(0x24000000))
[all …]
Dslider_theme_test.dart271 ..circle(
288 ..circle(
294 ..circle(
309 ..circle(
328 expect(sliderBox, paints..circle(color: sliderTheme.thumbColor, radius: 10.0));
333 expect(sliderBox, paints..circle(color: sliderTheme.disabledThumbColor, radius: 10.0));
341 ..circle(color: sliderTheme.activeTickMarkColor)
342 ..circle(color: sliderTheme.activeTickMarkColor)
343 ..circle(color: sliderTheme.inactiveTickMarkColor)
344 ..circle(color: sliderTheme.inactiveTickMarkColor)
[all …]
/third_party/skia/tests/
DTracingTest.cpp157 TracingCircle* circle = new TracingCircle(SkPoint::Make(20, 20), 15); in test_trace_objects() local
158 circle->traceSnapshot(); in test_trace_objects()
167 circle->fCenter.offset(10, 10); in test_trace_objects()
168 circle->traceSnapshot(); in test_trace_objects()
174 TRACE_EVENT1("skia", "Processing Shape", "#shape", circle); in test_trace_objects()
178 delete circle; in test_trace_objects()
/third_party/flutter/skia/tests/
DTracingTest.cpp157 TracingCircle* circle = new TracingCircle(SkPoint::Make(20, 20), 15); in test_trace_objects() local
158 circle->traceSnapshot(); in test_trace_objects()
167 circle->fCenter.offset(10, 10); in test_trace_objects()
168 circle->traceSnapshot(); in test_trace_objects()
174 TRACE_EVENT1("skia", "Processing Shape", "#shape", circle); in test_trace_objects()
178 delete circle; in test_trace_objects()
/third_party/python/Lib/turtledemo/
Dyinyang.py20 circle(radius/2., 180)
21 circle(radius, 180)
23 circle(-radius/2., 180)
32 circle(radius*0.15)
/third_party/boost/libs/geometry/test/algorithms/buffer/
Dbuffer_with_strategies.cpp99 bg::strategy::buffer::point_circle circle(160); in test_all() local
109 join, end, side, circle, distance(1.0), in test_all()
117 join, end, side, circle, distance(1.0), in test_all()
122 join, end, side, circle, distance(1.0), in test_all()
130 join, end, side, circle, distance(1.0), in test_all()
/third_party/boost/libs/contract/example/n1962/
Dcircle.cpp29 class circle class
43 explicit circle(unsigned a_radius) : radius_(a_radius) { in circle() function in circle
55 override_compute_area>(v, result, &circle::compute_area, this) in compute_area()
74 circle c(2); in main()
/third_party/jerryscript/tests/jerry/es2015/
Dobject-prototype-proto.js36 var circle = new Circle(); variable
38 shape.__proto__ = circle;
40 assert(Object.getPrototypeOf(shape) === circle);
41 assert(shape.__proto__ === circle);
/third_party/weex-loader/deps/weex-scripter/
DREADME.md4 [![Build status][circle-image]][circle-url]
9 [circle-image]: https://circleci.com/gh/weexteam/weex-scripter.svg?style=svg
10 [circle-url]: https://circleci.com/gh/weexteam/weex-scripter/tree/master
/third_party/flutter/skia/experimental/docs/
DexampleSlides.js1 var circle = { variable
80 { "line": [ 200,200, 200 + circle.radius * Math.cos(-22.5 * Math.PI / 180),
81 200 + circle.radius * Math.sin(-22.5 * Math.PI / 180) ] }
/third_party/skia/experimental/docs/
DexampleSlides.js1 var circle = { variable
80 { "line": [ 200,200, 200 + circle.radius * Math.cos(-22.5 * Math.PI / 180),
81 200 + circle.radius * Math.sin(-22.5 * Math.PI / 180) ] }
/third_party/parse5/test/data/parser-feedback/
Dpending-spec-changes.test62 "description": "<table><tr><td><svg><desc><td></desc><circle>",
63 "input": "<table><tr><td><svg><desc><td></desc><circle>",
101 "circle",

12345678910>>...13