Home
last modified time | relevance | path

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

12345678

/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/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"
DtypeGuardNarrowsIndexedAccessOfKnownProperty1.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"
DexhaustiveSwitchStatements1.errors.txt67 interface Circle { kind: "circle"; radius: number; }
78 case "circle": area = Math.PI * s.radius * s.radius; break;
90 case "circle": return Math.PI * s.radius * s.radius;
158 kind: "circle";
168 case "circle":
172 case "circle":
184 case "circle":
188 case "circle":
DsignatureHelpConstructorCallParamProperties.baseline55 "text": "The radius of the circle.",
83 "text": "Initialize a circle.",
100 "text": "The radius of the circle.",
DclassCanExtendConstructorFunction.errors.txt9 Types of property 'circle' are incompatible.
13 Property 'circle' is missing in type 'Wagon' but required in type 'typeof Wagon'.
26 Wagon.circle = function (wagons) {
95 !!! error TS2417: Types of property 'circle' are incompatible.
99 !!! error TS2417: Property 'circle' is missing in type 'Wagon' but required in type 'type…
100 !!! related TS2728 tests/cases/conformance/salsa/first.js:9:1: 'circle' is declared here.
108 static circle(others: (typeof Wagon)[]) {
DdiscriminatedUnionTypes1.errors.txt17 kind: "circle";
27 else if (s.kind === "circle") {
42 case "circle": return Math.PI * s.radius * s.radius;
54 case "circle": return Math.PI * s.radius * s.radius;
63 case "circle": return Math.PI * s.radius * s.radius;
DclassCanExtendConstructorFunction.symbols17 Wagon.circle = function (wagons) {
18 >Wagon.circle : Symbol(Wagon.circle, Decl(first.js, 6, 1))
20 >circle : Symbol(Wagon.circle, Decl(first.js, 6, 1))
161 static circle(others: (typeof Wagon)[]) {
162 >circle : Symbol(Conestoga.circle, Decl(second.ts, 17, 5))
DclassCanExtendConstructorFunction.types18 Wagon.circle = function (wagons) {
19 >Wagon.circle = function (wagons) { return wagons ? wagons.length : 3.14;} : (wagons?: Wagon[] |…
20 >Wagon.circle : (wagons?: Wagon[] | undefined) => number
22 >circle : (wagons?: Wagon[]) => number
202 static circle(others: (typeof Wagon)[]) {
203 >circle : (others: (typeof Wagon)[]) => number
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/classes/members/inheritance_and_overriding/
Dinheritance_and_overriding_1.ts39 let circle: Circle = new Circle(); variable
40 let a: string = circle.color;
42 circle.switchColor();
43 let b: string = circle.color;
45 Assert.equal(10, circle.gside);
Dinheritance_and_overriding_2.ts47 let circle: Circle = new Circle(); variable
48 Assert.equal(circle.color, "red");
49 circle.switchColor();
50 Assert.equal(circle.color, "white");
51 Assert.equal(11, circle.gside);
Dinheritance_and_overriding_5.ts55 let circle = new Circle(); variable
56 Assert.equal(circle.color, "red");
57 circle.switchColor();
58 Assert.equal(circle.color, "green");
/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/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/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/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.test65 "description": "<table><tr><td><svg><desc><td></desc><circle>",
66 "input": "<table><tr><td><svg><desc><td></desc><circle>",
104 "circle",
/third_party/skia/src/gpu/ops/
DGrOvalOpFactory.cpp1298 for (const auto& circle : fCircles) { in onPrepareDraws() local
1299 SkScalar innerRadius = circle.fInnerRadius; in onPrepareDraws()
1300 SkScalar outerRadius = circle.fOuterRadius; in onPrepareDraws()
1301 GrVertexColor color(circle.fColor, fWideColor); in onPrepareDraws()
1302 const SkRect& bounds = circle.fDevBounds; in onPrepareDraws()
1313 if (!circle.fStroked && fClipPlane && fClipPlaneIsect && in onPrepareDraws()
1314 (circle.fClipPlane[0] * circle.fIsectPlane[0] + in onPrepareDraws()
1315 circle.fClipPlane[1] * circle.fIsectPlane[1]) < 0.0f) { in onPrepareDraws()
1320 geoClipPlane.set(circle.fClipPlane[1] - circle.fIsectPlane[1], in onPrepareDraws()
1321 circle.fIsectPlane[0] - circle.fClipPlane[0]); in onPrepareDraws()
[all …]
/third_party/skia/samplecode/
DSampleCircle.cpp27 void circle(SkCanvas* canvas, int width, bool aa) { in circle() function in CircleView
46 circle(canvas, width, false); in drawSix()
48 circle(canvas, width, true); in drawSix()
/third_party/PyYAML/tests/data/
Dspec-02-24.data4 # tag:clarkevans.com,2002:circle
5 - !circle
/third_party/weex-loader/deps/weex-styler/
DREADME.md4 [![Build status][circle-image]][circle-url]
9 [circle-image]: https://circleci.com/gh/alibaba/weex_toolchain.svg?style=svg
10 [circle-url]: https://circleci.com/gh/alibaba/weex_toolchain/tree/master

12345678