/third_party/typescript/tests/baselines/reference/ |
H A D | typeGuardConstructorClassAndNumber.js | 3 class C1 { 7 let var1: C1 | number; 8 if (var1.constructor == C1) { 9 var1; // C1 13 var1; // number | C1 15 if (var1["constructor"] == C1) { 16 var1; // C1 20 var1; // number | C1 22 if (var1.constructor === C1) { 23 var1; // C1 [all...] |
H A D | circularReference.js | 6 export class C1 { 7 m1: foo2.M1.C1; 10 this.m1 = new foo2.M1.C1(); 20 export class C1 { 21 m1: foo1.M1.C1; 24 this.m1 = new foo1.M1.C1(); 28 var tmp = new M1.C1(); 43 var C1 = /** @class */ (function () {
44 function C1() {
45 this.m1 = new foo2.M1.C1();
[all...] |
H A D | typeGuardOfFormInstanceOf.js | 8 class C1 { 14 class D1 extends C1 { 24 var ctor1: C1 | C2; 25 str = ctor1 instanceof C1 && ctor1.p1; // C1 34 var r2: D1 | C2 = ctor2 instanceof C1 && ctor2; // C2 | D1 36 var ctor3: C1 | C2; 37 if (ctor3 instanceof C1) { 38 ctor3.p1; // C1 44 var ctor4: C1 | C [all...] |
H A D | exportNonVisibleType.js | 19 class C1 { 23 export = C1; // Should fail, type I1 of visible member C1.m1 not exported. 31 class C1 { 35 export = C1; // Should work, private type I1 of visible class C1 only used in private member m1. 44 var C1 = /** @class */ (function () {
45 function C1() {
47 return C1;
49 module.exports = C1;
[all...] |
H A D | commonJSImportAsPrimaryExpression.js | 4 export class C1 { 11 if(foo.C1.s1){ 19 exports.C1 = void 0;
20 var C1 = /** @class */ (function () {
21 function C1() {
24 C1.s1 = true;
25 return C1;
27 exports.C1 = C1;
32 if (foo.C1 [all...] |
H A D | interfaceDeclaration4.js | 6 export class C1 { } 9 class C1 implements Foo.I1 { 35 interface I6 extends Foo.C1 { } 48 var C1 = /** @class */ (function () {
49 function C1() {
51 return C1;
53 Foo.C1 = C1;
55 var C1 = /** @class */ (function () {
56 function C1() {
[all...] |
H A D | arrayAssignmentTest2.js | 6 class C1 implements I1 { 8 C1M1():C1[] {return null;} 10 class C2 extends C1 { 31 var c1 : C1 = new C1(); 36 var f1 = function () { return new C1();} 40 var arr_c1: C1[] = []; 43 var arr_c1_2: C1[] = []; 78 var C1 = /** @class */ (function () {
79 function C1() {
[all...] |
H A D | destructuringParameterProperties2.js | 2 class C1 { 22 var x = new C1(undefined, [0, undefined, ""]); 25 var y = new C1(10, [0, "", true]); 28 var z = new C1(10, [undefined, "", null]); 33 var C1 = /** @class */ (function () {
34 function C1(k, _a) {
41 C1.prototype.getA = function () {
44 C1.prototype.getB = function () {
47 C1.prototype.getC = function () {
50 return C1;
[all...] |
H A D | complicatedPrivacy.js | 6 export function f1(c1: C1) { 13 return new C1(); 16 public set p1(arg1: C1) { 25 export function f2(arg1: { x?: C1, y: number }) { 29 (a: number) : C1; 36 [number]: C1; // Used to be indexer, now it is a computed property 42 new (arg1: C1) : C1 46 function f2(f1: C1) { 54 class C1 { [all...] |
H A D | destructuringParameterProperties3.js | 2 class C1<T, U, V> { 22 var x = new C1(undefined, [0, true, ""]); 25 var y = new C1(10, [0, true, true]); 28 var z = new C1(10, [undefined, "", ""]); 31 var w = new C1(10, [undefined, undefined, undefined]); 36 var C1 = /** @class */ (function () {
37 function C1(k, _a) {
44 C1.prototype.getA = function () {
47 C1.prototype.getB = function () {
50 C1 [all...] |
H A D | arrayAssignmentTest1.js | 6 class C1 implements I1 { 8 C1M1():C1[] {return null;} 10 class C2 extends C1 { 31 var c1 : C1 = new C1(); 36 var f1 = function () { return new C1();} 40 var arr_c1: C1[] = []; 43 var arr_c1_2: C1[] = []; 48 var c1_error: C1 = []; // should be an error - is 104 var C1 [all...] |
H A D | m7Bugs.js | 17 class C1 { 21 class C2 extends C1 {} 23 var y1: C1 = new C2(); 24 var y2: C1 = <C1> new C2(); 25 var y3: C1 = <C1> {}; 47 var C1 = /** @class */ (function () {
48 function C1() {
50 return C1;
[all...] |
H A D | commonJSImportNotAsPrimaryExpression.js | 4 export class C1 { 29 var x: foo.C1 = <{m1: number}>{}; 30 var y: typeof foo.C1.s1 = false; 37 exports.E1 = exports.C1 = void 0;
38 var C1 = /** @class */ (function () {
39 function C1() {
42 C1.s1 = true;
43 return C1;
45 exports.C1 = C1;
[all...] |
H A D | amdImportNotAsPrimaryExpression.js | 4 export class C1 { 29 var x: foo.C1 = <{m1: number}>{}; 30 var y: typeof foo.C1.s1 = false; 38 exports.E1 = exports.C1 = void 0;
39 var C1 = /** @class */ (function () {
40 function C1() {
43 C1.s1 = true;
44 return C1;
46 exports.C1 = C1;
[all...] |
H A D | instanceofWithStructurallyIdenticalTypes.js | 4 class C1 { item: string } 8 function foo1(x: C1 | C2 | C3): string { 9 if (x instanceof C1) { 21 function isC1(c: C1 | C2 | C3): c is C1 { return c instanceof C1 } 22 function isC2(c: C1 | C2 | C3): c is C2 { return c instanceof C2 } 23 function isC3(c: C1 | C2 | C3): c is C3 { return c instanceof C3 } 25 function foo2(x: C1 | C2 | C3): string { 90 var C1 [all...] |
H A D | importImportOnlyModule.js | 4 export class C1 { 22 exports.C1 = void 0;
23 var C1 = /** @class */ (function () {
24 function C1() {
27 C1.s1 = true;
28 return C1;
30 exports.C1 = C1;
|
H A D | moduleCodeGenTest5.js | 8 export class C1 { 27 exports.E1 = exports.C1 = exports.f1 = exports.x = void 0;
33 var C1 = /** @class */ (function () {
34 function C1() {
37 C1.prototype.p2 = function () { };
38 return C1;
40 exports.C1 = C1;
|
H A D | bestCommonTypeOfTuple2.js | 9 class C1 implements base1 { i = "foo"; c } 10 class D1 extends C1 { i = "bar"; d } 14 var t3: [C1, D1]; 15 var t4: [base1, C1]; 16 var t5: [C1, F] 20 var e31 = t3[4]; // C1 63 var C1 = /** @class */ (function () {
64 function C1() {
67 return C1;
77 }(C1));
[all...] |
H A D | jsDeclarationsClassMethod.js | 2 function C1() { class 20 C1.prototype.method = function (x, y) { 30 C1.staticProp = function (x, y) { 68 function C1() {
85 C1.prototype.method = function (x, y) {
94 C1.staticProp = function (x, y) {
129 declare function C1(): void;
130 declare class C1 {
146 declare namespace C1 {
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A 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>>{ 27 public static <C0, C1> R2<C0,C1> of(C0 p0, C1 p1) { in of() 30 public static <C0, C1, C2> R3<C0,C1,C2> of(C0 p0, C1 p1, C2 p2) { in of() 33 public static <C0, C1, C2, C3> R4<C0,C1,C in of() [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A 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>>{ 31 public static <C0, C1> R2<C0,C1> of(C0 p0, C1 p1) { in of() 34 public static <C0, C1, C2> R3<C0,C1,C2> of(C0 p0, C1 p1, C2 p2) { in of() 37 public static <C0, C1, C2, C3> R4<C0,C1,C in of() [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | sbcdsp_data.c | 51 #define C1 1.3056875580 macro 57 F(5.36548976E-04 * C1), F(2.73370904E-03 * C1), 61 F(2.04385087E-02 * C1), F(3.21939290E-02 * C1), 65 F(1.94987841E-01 * C1), F(2.81828203E-01 * C1), 69 -F(7.76463494E-02 * C1), F(6.13245186E-03 * C1), 73 -F(3.06012286E-03 * C1), 89 #undef C1 global() macro 96 #define C1 global() macro 134 #undef C1 global() macro 141 #define C1 global() macro 227 #undef C1 global() macro 238 #define C1 global() macro 324 #undef C1 global() macro [all...] |
/third_party/ffmpeg/libavcodec/x86/ |
H A D | fdct.c | 89 #define TABLE_SSE2 C4, C4, C1, C3, -C6, -C2, -C1, -C5, \ 92 C4, -C4, C5, -C1, C2, -C6, C3, -C1, 94 #define C1 22725 macro 103 #undef C1 macro 110 #define C1 31521 macro 119 #undef C1 macro 126 #define C1 29692 macro 135 #undef C1 macro 142 #define C1 global() macro 151 #undef C1 global() macro 158 #define C1 global() macro 167 #undef C1 global() macro 174 #define C1 global() macro 183 #undef C1 global() macro 190 #define C1 global() macro 199 #undef C1 global() macro 206 #define C1 global() macro [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
H A D | ConstantFold.cpp | 999 Constant *llvm::ConstantFoldBinaryInstruction(unsigned Opcode, Constant *C1, in ConstantFoldBinaryInstruction() argument 1008 Constant *Identity = ConstantExpr::getBinOpIdentity(Opcode, C1->getType()); in ConstantFoldBinaryInstruction() 1010 if (C1 == Identity) in ConstantFoldBinaryInstruction() 1013 return C1; in ConstantFoldBinaryInstruction() 1017 bool HasScalarUndef = !C1->getType()->isVectorTy() && in ConstantFoldBinaryInstruction() 1018 (isa<UndefValue>(C1) || isa<UndefValue>(C2)); in ConstantFoldBinaryInstruction() 1022 if (isa<UndefValue>(C1) && isa<UndefValue>(C2)) in ConstantFoldBinaryInstruction() 1025 return Constant::getNullValue(C1->getType()); in ConstantFoldBinaryInstruction() 1029 return UndefValue::get(C1->getType()); in ConstantFoldBinaryInstruction() 1031 if (isa<UndefValue>(C1) in ConstantFoldBinaryInstruction() 1427 IdxCompare(Constant *C1, Constant *C2, Type *ElTy) IdxCompare() argument 1810 ConstantFoldCompareInstruction(unsigned short pred, Constant *C1, Constant *C2) ConstantFoldCompareInstruction() argument 2300 Constant *C1 = ConstantExpr::getSExtOrBitCast(Idx0, CommonTy); ConstantFoldGetElementPtr() local [all...] |
/third_party/node/deps/openssl/openssl/crypto/modes/asm/ |
H A D | ghash-sparcv9.pl | 361 ($Hhl,$Hlo,$Hhi,$Xlo,$Xhi,$xE1,$sqr, $C0,$C1,$C2,$C3,$V)= 418 xmulx $C2,$Hhl,$C1 429 xor $C0,$C1,$C1 ! Karatsuba post-processing 431 xor $sqr,$Xlo,$Xlo ! real destination is $C1 433 xor $Xlo,$C1,$C1 435 xor $Xhi,$C1,$C1 439 xmulx $C1, [all...] |