Home
last modified time | relevance | path

Searched refs:c5 (Results 1 - 25 of 71) sorted by relevance

123

/third_party/typescript/tests/baselines/reference/
H A DmergedClassInterface.js37 var c5 : C5; variable
38 c5.x1;
39 c5.x2;
40 c5.x3;
41 c5.x4;
65 var c5; variable
66 c5.x1;
67 c5.x2;
68 c5.x3;
69 c5
[all...]
H A DcommentsClass.js23 class c5 {
26 var i5 = new c5();
27 var i5_c = c5;
102 var c5 = /** @class */ (function () {
103 function c5() {
105 return c5;
107 var i5 = new c5();
108 var i5_c = c5;
169 declare class c5 {
172 declare var i5: c5;
[all...]
H A DdestructuringVariableDeclaration2.js15 var [c1, c2, { c3: c4, c5 }, , ...c6] = [1, 2, { c3: 4, c5: 0 }]; // Error
34 var _g = [1, 2, { c3: 4, c5: 0 }], c1 = _g[0], c2 = _g[1], _h = _g[2], c4 = _h.c3, c5 = _h.c5, c6 = _g.slice(4); // Error
H A DcommentsOverloads.js154 class c5 {
155 /** c5 1*/
157 /** c5 2*/
159 /** c5 implementation*/
173 var c5_i_1 = new c5(10);
174 var c5_i_2 = new c5("hello");
244 var c5 = /** @class */ (function () {
245 /** c5 implementation*/
246 function c5(aorb) {
248 return c5;
[all...]
H A DdynamicNames.js54 export const c5 = 1;
59 [c5]: string;
64 [c5]: string;
71 [c5]: string;
129 [c5]: "a",
135 export const o1_c5 = o1[c5];
167 exports.o2 = exports.o1_s2 = exports.o1_c5 = exports.o1_c4 = exports.o1 = exports.s2 = exports.c5 = exports.c4 = void 0;
176 exports.c5 = 1;
206 [exports.c5]: "a",
211 exports.o1_c5 = exports.o1[exports.c5];
[all...]
H A DmixinAccessModifiers.js71 f(c4: C4, c5: C5, c6: C6) {
73 c5.p;
84 f(c4: C4, c5: C5, c6: C6) {
86 c5.p;
97 f(c4: C4, c5: C5, c6: C6) {
99 c5.p;
250 C4.prototype.f = function (c4, c5, c6) {
252 c5.p;
267 C5.prototype.f = function (c4, c5, c6) {
269 c5
[all...]
H A DconstDeclarations2.js6 export const c3 = 0, c4 :string = "", c5 = null;
16 M.c3 = 0, M.c4 = "", M.c5 = null;
24 const c3 = 0, c4: string, c5: any;
H A DuntypedFunctionCallsWithTypeParameters1.js41 var c5: callable3<number>; variable
42 c5<string>(1); // error
93 var c5; variable
94 c5(1); // error
H A DtemplateLiteralTypes2.js33 const c5: `foo${string}` | `bar${string}` | `baz${string}` = c4; // `foo${string}` | `bar${string}` | `baz${string}`
38 let v5 = c5; // `foo${string}` | `bar${string}` | `baz${string}`
50 const c5 = `foo${s}` as const;
51 let v5 = c5;
152 var c5 = c4; // `foo${string}` | `bar${string}` | `baz${string}`
157 var v5 = c5; // `foo${string}` | `bar${string}` | `baz${string}`
168 var c5 = "foo".concat(s);
169 var v5 = c5;
H A DliteralTypeWidening.js20 const c5: "foo" | "bar" | "baz" = c4; // "foo" | "bar" | "baz"
25 let v5 = c5; // "foo" | "bar" | "baz"
44 const c5: 123 | 456 | 789 = c4; // 123 | 456 | 789
49 let v5 = c5; // 123 | 456 | 789
189 var c5 = c4; // "foo" | "bar" | "baz"
194 var v5 = c5; // "foo" | "bar" | "baz"
211 var c5 = c4; // 123 | 456 | 789
216 var v5 = c5; // 123 | 456 | 789
H A DliteralTypes2.js29 const c5 = "";
53 const c5 = cond ? 456 : undefined;
61 let x5 = c5;
80 readonly c5 = "";
215 var c5 = "";
241 var c5 = cond ? 456 : undefined;
249 var x5 = c5;
268 this.c5 = "";
H A DdestructuringParameterDeclaration1ES6.js44 function c5([a, b, [[c]]]) { } function
58 c5([1, 2, [["string"]]]); // Implied type is is [any, any, [[any]]]
59 c5([1, 2, [["string"]], false, true]); // Implied type is is [any, any, [[any]]]
136 function c5([a, b, [[c]]]) { }
145 c5([1, 2, [["string"]]]); // Implied type is is [any, any, [[any]]]
146 c5([1, 2, [["string"]], false, true]); // Implied type is is [any, any, [[any]]]
H A DclassWithConstructors.js18 var c5 = new C2(1); // ok
43 var c5 = new C2(1, 2); // ok
84 var c5 = new C2(1); // ok
112 var c5 = new C2(1, 2); // ok
H A DambientConstLiterals.js12 const c5 = f(123);
39 var c5 = f(123);
64 declare const c5 = 123;
H A DdestructuringParameterDeclaration1ES5.js43 function c5([a, b, [[c]]]) { } function
57 c5([1, 2, [["string"]]]); // Implied type is is [any, any, [[any]]]
58 c5([1, 2, [["string"]], false, true]); // Implied type is is [any, any, [[any]]]
160 function c5(_a) {
173 c5([1, 2, [["string"]]]); // Implied type is is [any, any, [[any]]]
174 c5([1, 2, [["string"]], false, true]); // Implied type is is [any, any, [[any]]]
H A DdestructuringParameterDeclaration1ES5iterable.js43 function c5([a, b, [[c]]]) { } function
57 c5([1, 2, [["string"]]]); // Implied type is is [any, any, [[any]]]
58 c5([1, 2, [["string"]], false, true]); // Implied type is is [any, any, [[any]]]
176 function c5(_a) {
189 c5([1, 2, [["string"]]]); // Implied type is is [any, any, [[any]]]
190 c5([1, 2, [["string"]], false, true]); // Implied type is is [any, any, [[any]]]
H A DparserAstSpans1.js210 /**c5 class*/
211 class c5 {
214 class c6 extends c5 {
409 /**c5 class*/
410 var c5 = /** @class */ (function () {
411 function c5() {
413 return c5;
423 }(c5));
H A DdestructuringParameterDeclaration2.js32 function c5([a, b, [[c]]]) { } function
40 c5([1, 2, false, true]); // Error, implied type is [any, any, [[any]]]
108 function c5(_a) {
119 c5([1, 2, false, true]); // Error, implied type is [any, any, [[any]]]
H A DconstDeclarations-invalidContexts.js17 const c5 = 0; // No Error will be reported here since we turn off all type checking
48 const c5 = 0; // No Error will be reported here since we turn off all type checking
/third_party/ffmpeg/libavfilter/
H A Dvf_colormatrix.c76 int c5; member
221 const int c5 = td->c5; in process_slice_uyvy422() local
231 dstp[x + 0] = CB((c4 * u + c5 * v + 8421376) >> 16); in process_slice_uyvy422()
265 const int c5 = td->c5; in process_slice_yuv444p() local
276 dstpU[x] = CB((c4 * u + c5 * v + 8421376) >> 16); in process_slice_yuv444p()
312 const int c5 = td->c5; in process_slice_yuv422p() local
324 dstpU[x >> 1] = CB((c4 * u + c5 * in process_slice_yuv422p()
362 const int c5 = td->c5; process_slice_yuv420p() local
[all...]
H A Dvf_convolution.c187 const uint16_t *c3 = (const uint16_t *)c[3], *c5 = (const uint16_t *)c[5]; in filter16_kirsch() local
193 c3[x] * -3 + c5[x] * -3 + in filter16_kirsch()
196 c3[x] * 5 + c5[x] * -3 + in filter16_kirsch()
199 c3[x] * 5 + c5[x] * 5 + in filter16_kirsch()
202 c3[x] * 5 + c5[x] * 5 + in filter16_kirsch()
205 c3[x] * -3 + c5[x] * 5 + in filter16_kirsch()
208 c3[x] * -3 + c5[x] * -3 + in filter16_kirsch()
211 c3[x] * -3 + c5[x] * -3 + in filter16_kirsch()
214 c3[x] * -3 + c5[x] * -3 + in filter16_kirsch()
235 const uint8_t *c3 = c[3], *c5 in filter_prewitt() local
270 const uint8_t *c3 = c[3], *c5 = c[5]; filter_sobel() local
290 const uint8_t *c3 = c[3], *c5 = c[5]; filter_scharr() local
312 const uint8_t *c3 = c[3], *c5 = c[5]; filter_kirsch() local
501 const uint8_t *c3 = c[3], *c4 = c[4], *c5 = c[5]; filter_3x3() local
[all...]
/third_party/python/Lib/test/
H A Dtest_unicodedata.py380 c1,c2,c3,c4,c5 = [self.unistr(x) for x in line.split(';')[:-1]]
384 self.assertTrue(c4 == NFC(c4) == NFC(c5), line)
386 self.assertTrue(c5 == NFD(c4) == NFD(c5), line)
388 NFKC(c3) == NFKC(c4) == NFKC(c5),
390 self.assertTrue(c5 == NFKD(c1) == NFKD(c2) == \
391 NFKD(c3) == NFKD(c4) == NFKD(c5),
398 self.assertTrue(unicodedata.is_normalized("NFD", c5))
401 self.assertTrue(unicodedata.is_normalized("NFKD", c5))
/third_party/ltp/lib/
H A Dtst_kvercmp.c112 int c1 = 0, c2 = 0, c3 = 0, c4 = 0, c5 = 0; in tst_kvexcmp() local
116 sscanf(cur_ver, "%d.%d.%d-%d.%d", &c1, &c2, &c3, &c4, &c5); in tst_kvexcmp()
128 return c5 - t5; in tst_kvexcmp()
/third_party/ffmpeg/libavcodec/
H A Dxvididct.c63 const unsigned c5 = tab[4]; in idct_row() local
79 const int b2 = c5 * in[1] - c1 * in[3]; in idct_row()
80 const int b3 = c7 * in[1] - c5 * in[3]; in idct_row()
123 const unsigned int b0 = c1 * in[1] + c3 * in[3] + c5 * in[5] + c7 * in[7]; in idct_row()
124 const unsigned int b1 = c3 * in[1] - c7 * in[3] - c1 * in[5] - c5 * in[7]; in idct_row()
125 const unsigned int b2 = c5 * in[1] - c1 * in[3] + c7 * in[5] + c3 * in[7]; in idct_row()
126 const unsigned int b3 = c7 * in[1] - c5 * in[3] + c3 * in[5] - c1 * in[7]; in idct_row()
/third_party/ffmpeg/libavcodec/mips/
H A Dvp3dsp_idct_msa.c35 v4i32 c0, c1, c2, c3, c4, c5, c6, c7; in idct_msa() local
180 c4, c5, c6, c7); in idct_msa()
187 G += c5; in idct_msa()
216 Fd = Add + c5; in idct_msa()
288 c4, c5, c6, c7); in idct_msa()
295 G += c5; in idct_msa()
324 Fd = Add + c5; in idct_msa()
387 v4i32 c0, c1, c2, c3, c4, c5, c6, c7; in ff_vp3_idct_dc_add_msa() local
397 c4, c5, c6, c7); in ff_vp3_idct_dc_add_msa()
401 ILVR_H4_SW(zero, c4, zero, c5, zer in ff_vp3_idct_dc_add_msa()
489 v8i16 c0, c1, c2, c3, c4, c5, c6, c7; ff_vp3_h_loop_filter_msa() local
[all...]

Completed in 10 milliseconds

123