/third_party/typescript/tests/baselines/reference/ |
D | constructorFunctions.types | 90 var C4 = function () { 91 >C4 : typeof C4 92 >function () { if (!(this instanceof C4)) return new C4();} : typeof C4 94 if (!(this instanceof C4)) return new C4(); 95 >!(this instanceof C4) : boolean 96 >(this instanceof C4) : boolean 97 >this instanceof C4 : boolean 99 >C4 : typeof C4 100 >new C4() : C4 101 >C4 : typeof C4 [all …]
|
D | declarationEmitClassMemberNameConflict.js | 29 export class C4 { class 30 set C4(v) { } // has to be the same as the class name setter in C4 33 return function (t: typeof C4) { argument 41 exports.C4 = exports.C3 = exports.C2 = exports.C1 = void 0; 79 var C4 = /** @class */ (function () { 80 function C4() { class in C4 82 Object.defineProperty(C4.prototype, "C4", { 88 C4.prototype.bar = function () { 92 return C4; 94 exports.C4 = C4; [all …]
|
D | declarationFiles.symbols | 78 class C4 { 79 >C4 : Symbol(C4, Decl(declarationFiles.ts, 26, 1)) 82 >x1 : Symbol(C4.x1, Decl(declarationFiles.ts, 28, 10)) 84 >this : Symbol(C4, Decl(declarationFiles.ts, 26, 1)) 87 >x2 : Symbol(C4.x2, Decl(declarationFiles.ts, 29, 21)) 88 >this : Symbol(C4, Decl(declarationFiles.ts, 26, 1)) 91 >x3 : Symbol(C4.x3, Decl(declarationFiles.ts, 30, 16)) 93 >this : Symbol(C4, Decl(declarationFiles.ts, 26, 1)) 96 >x4 : Symbol(C4.x4, Decl(declarationFiles.ts, 31, 23)) 97 >this : Symbol(C4, Decl(declarationFiles.ts, 26, 1)) [all …]
|
D | declarationEmitClassMemberNameConflict.types | 57 export class C4 { 58 >C4 : C4 60 set C4(v) { } // has to be the same as the class name 61 >C4 : any 65 >bar : () => (t: typeof C4) => void 67 return function (t: typeof C4) { 68 >function (t: typeof C4) { } : (t: typeof C4) => void 69 >t : typeof C4 70 >C4 : typeof C4
|
D | mergedInterfacesWithMultipleBases2.js | 17 class C4 { class 26 interface A extends C2, C4 { 56 class C4<T> { 64 interface A<T> extends C2<string>, C4<string> { 96 var C4 = /** @class */ (function () { 97 function C4() { class in C4 99 return C4; 126 var C4 = /** @class */ (function () { class 127 function C4() { class in anonymousFunction449cac970600.C4 129 return C4;
|
D | mixinAccessModifiers.types | 166 class C4 extends Mix(Protected, Protected2) { 167 >C4 : C4 173 f(c4: C4, c5: C5, c6: C6) { 174 >f : (c4: C4, c5: C5, c6: C6) => void 175 >c4 : C4 181 >c4 : C4 197 C4.s; 198 >C4.s : string 199 >C4 : typeof C4 221 f(c4: C4, c5: C5, c6: C6) { [all …]
|
D | constraintSatisfactionWithAny.types | 110 class C4<T extends <T>(x:T) => T> { 111 >C4 : C4<T> 118 var c7 = new C4(a); 119 >c7 : C4<any> 120 >new C4(a) : C4<any> 121 >C4 : typeof C4 124 var c8 = new C4<any>(b); 125 >c8 : C4<any> 126 >new C4<any>(b) : C4<any> 127 >C4 : typeof C4
|
D | typeGuardConstructorDerivedClass.types | 56 class C4 extends C3 {} 57 >C4 : C4 60 let var2: C4 | string; 61 >var2 : string | C4 66 >var2 : string | C4 73 if (var2.constructor === C4) { 74 >var2.constructor === C4 : boolean 76 >var2 : string | C4 78 >C4 : typeof C4 80 var2; // C4 [all …]
|
D | declarationEmitClassMemberNameConflict.symbols | 53 export class C4 { 54 >C4 : Symbol(C4, Decl(declarationEmitClassMemberNameConflict.ts, 25, 1)) 56 set C4(v) { } // has to be the same as the class name 57 >C4 : Symbol(C4.C4, Decl(declarationEmitClassMemberNameConflict.ts, 27, 17)) 61 >bar : Symbol(C4.bar, Decl(declarationEmitClassMemberNameConflict.ts, 28, 17)) 63 return function (t: typeof C4) { 65 >C4 : Symbol(C4, Decl(declarationEmitClassMemberNameConflict.ts, 25, 1))
|
D | constructorFunctions.symbols | 67 var C4 = function () { 68 >C4 : Symbol(C4, Decl(index.js, 25, 3)) 70 if (!(this instanceof C4)) return new C4(); 71 >this : Symbol(C4, Decl(index.js, 25, 8)) 72 >C4 : Symbol(C4, Decl(index.js, 25, 3)) 73 >C4 : Symbol(C4, Decl(index.js, 25, 3)) 77 const c4_v1 = C4(); // error: @class tag requires 'new' 79 >C4 : Symbol(C4, Decl(index.js, 25, 3)) 81 const c4_v2 = new C4(); 83 >C4 : Symbol(C4, Decl(index.js, 25, 3))
|
D | inferringClassStaticMembersFromAssignments.types | 65 var C4 = class { }; 66 >C4 : typeof C4 67 >class { } : typeof C4 69 C4.staticProp = 0; 70 >C4.staticProp = 0 : 0 71 >C4.staticProp : number 72 >C4 : typeof C4 133 var n = C4.staticProp; 135 >C4.staticProp : number 136 >C4 : typeof C4
|
D | declarationFiles.js | 30 class C4 { 67 var C4 = /** @class */ (function () { 68 function C4() { 75 C4.prototype.f1 = function () { 78 C4.prototype.f2 = function () { 81 C4.prototype.f3 = function () { 84 C4.prototype.f4 = function () { 88 return C4;
|
D | mixinAccessModifiers.js | 70 class C4 extends Mix(Protected, Protected2) { class 71 f(c4: C4, c5: C5, c6: C6) { argument 77 C4.s; 84 f(c4: C4, c5: C5, c6: C6) { argument 90 C4.s; // Error, not in class deriving from Protected2 97 f(c4: C4, c5: C5, c6: C6) { argument 103 C4.s; // Error, not in class deriving from Protected2 245 var C4 = /** @class */ (function (_super) { 246 __extends(C4, _super); 247 function C4() { class in C4 [all …]
|
D | mergeClassInterfaceAndModule.symbols | 29 module C4 {} 30 >C4 : Symbol(C4, Decl(mergeClassInterfaceAndModule.ts, 10, 15), Decl(mergeClassInterfaceAndModule.t… 32 declare class C4 {} // error -- class declaration must precede module declaration 33 >C4 : Symbol(C4, Decl(mergeClassInterfaceAndModule.ts, 10, 15), Decl(mergeClassInterfaceAndModule.t… 35 interface C4 {} 36 >C4 : Symbol(C4, Decl(mergeClassInterfaceAndModule.ts, 10, 15), Decl(mergeClassInterfaceAndModule.t…
|
D | constraintSatisfactionWithAny.js | 45 class C4<T extends <T>(x:T) => T> { class 49 var c7 = new C4(a); 50 var c8 = new C4<any>(b); 95 var C4 = /** @class */ (function () { 96 function C4(x) { class in C4 99 return C4; 101 var c7 = new C4(a); 102 var c8 = new C4(b);
|
D | mergedClassInterface.js | 16 interface C4 { } 18 class C4 { } class 59 var C4 = /** @class */ (function () { 60 function C4() { class in C4 62 return C4; 87 interface C4 { 89 declare class C4 {
|
D | extBaseClass2.js | 3 export class C4 extends M.B { 31 var C4 = /** @class */ (function (_super) { class 32 __extends(C4, _super); 33 function C4() { class in anonymousFunctionf86f8f0b0600.C4 36 return C4; 38 N.C4 = C4;
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
D | Row.java | 23 public class Row<C0, C1, C2, C3, C4> implements java.lang.Comparable, Cloneable, 24 Freezable<Row<C0, C1, C2, C3, C4>>{ 40 public static <C0, C1, C2, C3, C4> R5<C0,C1,C2,C3,C4> of(C0 p0, C1 p1, C2 p2, C3 p3, C4 p4) { in of() 71 public static class R5<C0, C1, C2, C3, C4> extends Row<C0, C1, C2, C3, C4> { 72 public R5(C0 a, C1 b, C2 c, C3 d, C4 e) { in R5() 77 public Row<C0, C1, C2, C3, C4> set0(C0 item) { in set0() 83 public Row<C0, C1, C2, C3, C4> set1(C1 item) { in set1() 89 public Row<C0, C1, C2, C3, C4> set2(C2 item) { in set2() 95 public Row<C0, C1, C2, C3, C4> set3(C3 item) { in set3() 101 public Row<C0, C1, C2, C3, C4> set4(C4 item) { in set4() [all …]
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | Row.java | 19 public class Row<C0, C1, C2, C3, C4> implements java.lang.Comparable, Cloneable, 20 Freezable<Row<C0, C1, C2, C3, C4>>{ 36 public static <C0, C1, C2, C3, C4> R5<C0,C1,C2,C3,C4> of(C0 p0, C1 p1, C2 p2, C3 p3, C4 p4) { in of() 55 public static class R5<C0, C1, C2, C3, C4> extends Row<C0, C1, C2, C3, C4> { 56 public R5(C0 a, C1 b, C2 c, C3 d, C4 e) { in R5() 61 public Row<C0, C1, C2, C3, C4> set0(C0 item) { in set0() 67 public Row<C0, C1, C2, C3, C4> set1(C1 item) { in set1() 73 public Row<C0, C1, C2, C3, C4> set2(C2 item) { in set2() 79 public Row<C0, C1, C2, C3, C4> set3(C3 item) { in set3() 85 public Row<C0, C1, C2, C3, C4> set4(C4 item) { in set4() [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | sbcdsp_data.c | 144 #define C4 2.5377944043 macro 154 -F(8.23919506E-04 * C4), F(0.00000000E+00 * C4), 162 -F(1.46525263E-02 * C4), F(0.00000000E+00 * C4), 170 -F(1.23264548E-01 * C4), F(0.00000000E+00 * C4), 178 F(1.46404076E-02 * C4), F(0.00000000E+00 * C4), 186 -F(9.02154502E-04 * C4), F(0.00000000E+00 * C4), 208 -F(1.0000000000 / C4), F(0.5555702330 / C5), 209 -F(1.0000000000 / C4), -F(0.9807852804 / C5), 210 -F(1.0000000000 / C4), F(0.1950903220 / C5), 211 -F(1.0000000000 / C4), F(0.8314696123 / C5), [all …]
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/ |
D | nv50_formats.c | 86 #define C4(c, p, n, r, g, b, a, t, s, u) \ macro 103 C4(c, p, n, r, g, b, ONE_FLOAT, t, s, u) 105 C4(c, p, n, r, g, b, ONE_INT, t, s, u) 108 C4(c, p, n, r, g, ZERO, ONE_FLOAT, t, s, u) 110 C4(c, p, n, r, g, ZERO, ONE_INT, t, s, u) 113 C4(c, p, n, r, ZERO, ZERO, ONE_FLOAT, t, s, u) 115 C4(c, p, n, r, ZERO, ZERO, ONE_INT, t, s, u) 118 C4(c, p, n, ZERO, ZERO, ZERO, a, t, s, u) 126 C4(A, B8G8R8A8_UNORM, BGRA8_UNORM, B, G, R, A, UNORM, A8B8G8R8, ID), 128 C4(A, B8G8R8A8_SRGB, BGRA8_SRGB, B, G, R, A, UNORM, A8B8G8R8, TD), [all …]
|
/third_party/ffmpeg/libavcodec/x86/ |
D | simple_idct.asm | 48 %define C4 16383 ; cos(i*M_PI/16)*sqrt(2)*(1<<14) - 0.5 62 dw C4, C4, C4, C4 63 dw C4, -C4, C4, -C4 96 movq mm4, [coeffs + 16] ; C4 C4 C4 C4 98 movq mm5, [coeffs + 24] ; -C4 C4 -C4 C4 184 movq mm4, [coeffs + 16] ; C4 C4 C4 C4 186 movq mm5, [coeffs + 24] ; -C4 C4 -C4 C4 253 movq mm4, [coeffs + 16] ; C4 C4 C4 C4 255 movq mm5, [coeffs + 24] ; -C4 C4 -C4 C4 327 movq mm4, [coeffs + 16] ; C4 C4 C4 C4 [all …]
|
D | fdct.c | 163 #define TABLE_SSE2 C4, C4, C1, C3, -C6, -C2, -C1, -C5, \ 164 C4, C4, C5, C7, C2, C6, C3, -C7, \ 165 -C4, C4, C7, C3, C6, -C2, C7, -C5, \ 166 C4, -C4, C5, -C1, C2, -C6, C3, -C1, 171 #define C4 16384 macro 180 #undef C4 187 #define C4 22725 macro 196 #undef C4 203 #define C4 21407 macro 212 #undef C4 [all …]
|
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/2.7/7_improved_handling/ |
D | 7_improved_handling.ts | 50 class C4 extends C1{ class 60 function func1(arg: C1 | C2 | C3 | C4) { 70 function func2(arg: C1 | C2 | C3 | C4) { 79 let t3 = !true ? new C3(14, true) : new C4(15, { a: 'a' }); 80 function func3(arg: C1 | C2 | C3 | C4) { 81 if (arg instanceof C4) { 90 function func(x: C2 | C3 | C4) { 101 Assert.isObject(func(new C4(3, { o: 'obj' })));
|
/third_party/openssl/crypto/whrlpool/ |
D | wp_block.c | 186 # define C4(K,i) ROTATE(Cx.q[K.c[(i)*8+4]],32) macro 204 # define C4(K,i) (Cx.q[4+8*K.c[(i)*8+4]]) macro 217 # define C4(K,i) (((u64_a1*)(Cx.c+4))[2*K.c[(i)*8+4]]) macro 523 C4(K, (i - 4) & 7) ^ C5(K, (i - 5) & 7) ^ in whirlpool_block() 530 C4(S, (i - 4) & 7) ^ C5(S, (i - 5) & 7) ^ in whirlpool_block() 568 C4(K, 4) ^ C5(K, 3) ^ C6(K, 2) ^ C7(K, 1) ^ RC[r]; in whirlpool_block() 570 C4(K, 5) ^ C5(K, 4) ^ C6(K, 3) ^ C7(K, 2); in whirlpool_block() 572 C4(K, 6) ^ C5(K, 5) ^ C6(K, 4) ^ C7(K, 3); in whirlpool_block() 574 C4(K, 7) ^ C5(K, 6) ^ C6(K, 5) ^ C7(K, 4); in whirlpool_block() 576 C4(K, 0) ^ C5(K, 7) ^ C6(K, 6) ^ C7(K, 5); in whirlpool_block() [all …]
|