Home
last modified time | relevance | path

Searched refs:I1 (Results 1 – 25 of 525) sorted by relevance

12345678910>>...21

/third_party/typescript/tests/baselines/reference/
DinterfaceDeclaration3.symbols2 interface I1 { item:number; }
3 >I1 : Symbol(I1, Decl(interfaceDeclaration3.ts, 0, 0))
4 >item : Symbol(I1.item, Decl(interfaceDeclaration3.ts, 0, 14))
9 interface I1 { item:string; }
10 >I1 : Symbol(I1, Decl(interfaceDeclaration3.ts, 2, 11))
11 >item : Symbol(I1.item, Decl(interfaceDeclaration3.ts, 3, 18))
17 class C1 implements I1 {
19 >I1 : Symbol(I1, Decl(interfaceDeclaration3.ts, 2, 11))
24 class C2 implements I1 {
26 >I1 : Symbol(I1, Decl(interfaceDeclaration3.ts, 2, 11))
[all …]
DexportNonVisibleType.symbols2 interface I1 {
3 >I1 : Symbol(I1, Decl(foo1.ts, 0, 0))
6 >a : Symbol(I1.a, Decl(foo1.ts, 0, 14))
9 >b : Symbol(I1.b, Decl(foo1.ts, 1, 11))
12 var x: I1 = {a: "test", b: 42};
14 >I1 : Symbol(I1, Decl(foo1.ts, 0, 0))
18 export = x; // Should fail, I1 not exported.
23 interface I1 {
24 >I1 : Symbol(I1, Decl(foo2.ts, 0, 0))
27 >a : Symbol(I1.a, Decl(foo2.ts, 0, 14))
[all …]
DoverEagerReturnTypeSpecialization.types4 interface I1<T> {
5 func<U>(callback: (value: T) => U): I1<U>;
6 >func : <U>(callback: (value: T) => U) => I1<U>
11 declare var v1: I1<number>;
12 >v1 : I1<number>
14 var r1: I1<string> = v1.func(num => num.toString()) // Correctly returns an I1<string>
15 >r1 : I1<string>
16 …unc(num => num.toString()) // Correctly returns an I1<string> .func(str => str.length) :…
17 … num.toString()) // Correctly returns an I1<string> .func : <U>(callback: (value: string…
18 >v1.func(num => num.toString()) : I1<string>
[all …]
DinterfaceDeclaration4.symbols7 export interface I1 { item: string; }
8 >I1 : Symbol(I1, Decl(interfaceDeclaration4.ts, 2, 12))
9 >item : Symbol(I1.item, Decl(interfaceDeclaration4.ts, 3, 25))
15 class C1 implements Foo.I1 {
17 >Foo.I1 : Symbol(Foo.I1, Decl(interfaceDeclaration4.ts, 2, 12))
19 >I1 : Symbol(Foo.I1, Decl(interfaceDeclaration4.ts, 2, 12))
26 interface I2 extends Foo.I1 {
28 >Foo.I1 : Symbol(Foo.I1, Decl(interfaceDeclaration4.ts, 2, 12))
30 >I1 : Symbol(Foo.I1, Decl(interfaceDeclaration4.ts, 2, 12))
37 interface I3 extends Foo.I1 {
[all …]
DgenericChainedCalls.types2 interface I1<T> {
3 func<U>(callback: (value: T) => U): I1<T>;
4 >func : <U>(callback: (value: T) => U) => I1<T>
9 declare var v1: I1<number>;
10 >v1 : I1<number>
13 >r1 : I1<number>
14 ….length) // error, number doesn't have a length .func(num => num.toString()) : I1<number>
15 …r, number doesn't have a length .func : <U>(callback: (value: number) => U) => I1<number>
16 >v1.func(num => num.toString()) .func(str => str.length) : I1<number>
17 >v1.func(num => num.toString()) .func : <U>(callback: (value: number) => U) => I1<number>
[all …]
DoverEagerReturnTypeSpecialization.symbols4 interface I1<T> {
5 >I1 : Symbol(I1, Decl(overEagerReturnTypeSpecialization.ts, 0, 0))
8 func<U>(callback: (value: T) => U): I1<U>;
9 >func : Symbol(I1.func, Decl(overEagerReturnTypeSpecialization.ts, 2, 17))
15 >I1 : Symbol(I1, Decl(overEagerReturnTypeSpecialization.ts, 0, 0))
19 declare var v1: I1<number>;
21 >I1 : Symbol(I1, Decl(overEagerReturnTypeSpecialization.ts, 0, 0))
23 var r1: I1<string> = v1.func(num => num.toString()) // Correctly returns an I1<string>
25 >I1 : Symbol(I1, Decl(overEagerReturnTypeSpecialization.ts, 0, 0))
26 >v1.func(num => num.toString()) // Correctly returns an I1<string> .func : Symbol(I1.func…
[all …]
DinterfaceImplementation5.symbols2 interface I1 {
3 >I1 : Symbol(I1, Decl(interfaceImplementation5.ts, 0, 0))
6 >getset1 : Symbol(I1.getset1, Decl(interfaceImplementation5.ts, 0, 14))
9 class C1 implements I1 {
11 >I1 : Symbol(I1, Decl(interfaceImplementation5.ts, 0, 0))
17 class C2 implements I1 {
19 >I1 : Symbol(I1, Decl(interfaceImplementation5.ts, 0, 0))
26 class C3 implements I1 {
28 >I1 : Symbol(I1, Decl(interfaceImplementation5.ts, 0, 0))
38 class C4 implements I1 {
[all …]
Dmutrec.types25 interface I1 {
36 y:I1;
37 >y : I1
40 function g(p: I1) { return p };
41 >g : (p: I1) => I1
42 >p : I1
43 >p : I1
49 >g(i2) : I1
50 >g : (p: I1) => I1
57 >g(i3) : I1
[all …]
DinterfaceImplementation6.symbols2 interface I1 {
3 >I1 : Symbol(I1, Decl(interfaceImplementation6.ts, 0, 0))
6 >item : Symbol(I1.item, Decl(interfaceImplementation6.ts, 0, 14))
9 class C1 implements I1 {
11 >I1 : Symbol(I1, Decl(interfaceImplementation6.ts, 0, 0))
17 class C2 implements I1 {
19 >I1 : Symbol(I1, Decl(interfaceImplementation6.ts, 0, 0))
25 class C3 implements I1 {
27 >I1 : Symbol(I1, Decl(interfaceImplementation6.ts, 0, 0))
38 private pt: I1 = { item: 1 };
[all …]
DinterfaceDeclaration3.errors.txt1 …rror TS2416: Property 'item' in type 'C1' is not assignable to the same property in base type 'I1'.
3 …rror TS2416: Property 'item' in type 'C1' is not assignable to the same property in base type 'I1'.
5 …r/interfaceDeclaration3.ts(54,11): error TS2430: Interface 'I2' incorrectly extends interface 'I1'.
11 interface I1 { item:number; }
14 interface I1 { item:string; }
16 class C1 implements I1 {
19 …rror TS2416: Property 'item' in type 'C1' is not assignable to the same property in base type 'I1'.
22 class C2 implements I1 {
29 class C4 implements M2.I1 {
33 class C5 implements M2.M3.I1 {
[all …]
DoptionalParamAssignmentCompat.types2 interface I1 {
8 p1: I1;
9 >p1 : I1
11 m1(p1?: string): I1;
12 >m1 : (p1?: string) => I1
18 var c: I1 = i2.p1; // should be ok
19 >c : I1
20 >i2.p1 : I1
22 >p1 : I1
24 var d: I1 = i2.m1; // should error
[all …]
DinterfaceDeclaration3.js2 interface I1 { item:number; }
5 interface I1 { item:string; }
7 class C1 implements I1 {
10 class C2 implements I1 {
17 class C4 implements M2.I1 {
21 class C5 implements M2.M3.I1 {
27 export interface I1 { item:string; }
30 export interface I1 { item:string; }
32 class C1 implements I1 {
35 class C2 implements I1 {
[all …]
DoptionalParamAssignmentCompat.symbols2 interface I1 {
3 >I1 : Symbol(I1, Decl(optionalParamAssignmentCompat.ts, 0, 0))
12 p1: I1;
14 >I1 : Symbol(I1, Decl(optionalParamAssignmentCompat.ts, 0, 0))
16 m1(p1?: string): I1;
19 >I1 : Symbol(I1, Decl(optionalParamAssignmentCompat.ts, 0, 0))
25 var c: I1 = i2.p1; // should be ok
27 >I1 : Symbol(I1, Decl(optionalParamAssignmentCompat.ts, 0, 0))
32 var d: I1 = i2.m1; // should error
34 >I1 : Symbol(I1, Decl(optionalParamAssignmentCompat.ts, 0, 0))
DincompatibleGenericTypes.symbols2 interface I1<T> {
3 >I1 : Symbol(I1, Decl(incompatibleGenericTypes.ts, 0, 0))
6 m1<U>(callback: (p: T) => U): I1<U>;
7 >m1 : Symbol(I1.m1, Decl(incompatibleGenericTypes.ts, 0, 17))
13 >I1 : Symbol(I1, Decl(incompatibleGenericTypes.ts, 0, 0))
18 var v1: I1<boolean>;
20 >I1 : Symbol(I1, Decl(incompatibleGenericTypes.ts, 0, 0))
22 var v2: I1<number> = v1;
24 >I1 : Symbol(I1, Decl(incompatibleGenericTypes.ts, 0, 0))
DreExportGlobalDeclaration2.symbols2 declare interface I1 {
3 >I1 : Symbol(I1, Decl(file1.d.ts, 0, 0))
6 >x : Symbol(I1.x, Decl(file1.d.ts, 0, 22))
17 export {I1, I1 as II1};
18 >I1 : Symbol(I1, Decl(file2.ts, 0, 8))
19 >I1 : Symbol(I1, Decl(file1.d.ts, 0, 0))
27 export {I1 as III1};
28 >I1 : Symbol(I1, Decl(file1.d.ts, 0, 0))
DexportNonVisibleType.types2 interface I1 {
10 var x: I1 = {a: "test", b: 42};
11 >x : I1
18 export = x; // Should fail, I1 not exported.
19 >x : I1
23 interface I1 {
34 m1: I1;
35 >m1 : I1
38 export = C1; // Should fail, type I1 of visible member C1.m1 not exported.
42 interface I1 {
[all …]
DtypeAssertionsWithIntersectionTypes01.types2 interface I1 {
7 interface I2 extends I1 {
27 var y: I1 & I3 = x;
28 >y : I1 & I3
35 var a = <I1 & I3>z;
36 >a : I1 & I3
37 ><I1 & I3>z : I1 & I3
50 var d = <I1>y;
51 >d : I1
52 ><I1>y : I1
[all …]
DtypeAssertionsWithIntersectionTypes01.symbols2 interface I1 {
3 >I1 : Symbol(I1, Decl(typeAssertionsWithIntersectionTypes01.ts, 0, 0))
6 >p1 : Symbol(I1.p1, Decl(typeAssertionsWithIntersectionTypes01.ts, 0, 14))
9 interface I2 extends I1 {
11 >I1 : Symbol(I1, Decl(typeAssertionsWithIntersectionTypes01.ts, 0, 0))
30 var y: I1 & I3 = x;
32 >I1 : Symbol(I1, Decl(typeAssertionsWithIntersectionTypes01.ts, 0, 0))
41 var a = <I1 & I3>z;
43 >I1 : Symbol(I1, Decl(typeAssertionsWithIntersectionTypes01.ts, 0, 0))
57 var d = <I1>y;
[all …]
DgenericChainedCalls.symbols2 interface I1<T> {
3 >I1 : Symbol(I1, Decl(genericChainedCalls.ts, 0, 0))
6 func<U>(callback: (value: T) => U): I1<T>;
7 >func : Symbol(I1.func, Decl(genericChainedCalls.ts, 0, 17))
13 >I1 : Symbol(I1, Decl(genericChainedCalls.ts, 0, 0))
17 declare var v1: I1<number>;
19 >I1 : Symbol(I1, Decl(genericChainedCalls.ts, 0, 0))
23 …tr.length) // error, number doesn't have a length .func : Symbol(I1.func, Decl(genericCh…
24 >v1.func(num => num.toString()) .func : Symbol(I1.func, Decl(genericChainedCalls.ts, 0, …
25 >v1.func : Symbol(I1.func, Decl(genericChainedCalls.ts, 0, 17))
[all …]
DinterfaceImplementation6.errors.txt1 …r/interfaceImplementation6.ts(9,7): error TS2420: Class 'C2' incorrectly implements interface 'I1'.
2 Property 'item' is private in type 'C2' but not in type 'I1'.
3 …/interfaceImplementation6.ts(13,7): error TS2420: Class 'C3' incorrectly implements interface 'I1'.
4 Property 'item' is missing in type 'C3' but required in type 'I1'.
8 interface I1 {
12 class C1 implements I1 {
16 class C2 implements I1 {
18 !!! error TS2420: Class 'C2' incorrectly implements interface 'I1'.
19 !!! error TS2420: Property 'item' is private in type 'C2' but not in type 'I1'.
23 class C3 implements I1 {
[all …]
DinterfaceDeclaration3.types2 interface I1 { item:number; }
8 interface I1 { item:string; }
14 class C1 implements I1 {
20 class C2 implements I1 {
33 class C4 implements M2.I1 {
41 class C5 implements M2.M3.I1 {
55 export interface I1 { item:string; }
62 export interface I1 { item:string; }
65 class C1 implements I1 {
71 class C2 implements I1 {
[all …]
DarrayAssignmentTest1.types2 interface I1 {
7 class C1 implements I1 {
56 var i1 : I1 = c1;
57 >i1 : I1
86 var arr_i1: I1[] = [];
87 >arr_i1 : I1[]
98 var arr_i1_2: I1[] = [];
99 >arr_i1_2 : I1[]
114 var i1_error: I1 = []; // should be an error - is
115 >i1_error : I1
[all …]
/third_party/typescript/tests/cases/compiler/
DinterfaceDeclaration3.ts2 interface I1 { item:number; } interface
5 interface I1 { item:string; } interface
7 class C1 implements I1 {
10 class C2 implements I1 {
17 class C4 implements M2.I1 {
21 class C5 implements M2.M3.I1 {
27 export interface I1 { item:string; } interface
30 export interface I1 { item:string; } interface
32 class C1 implements I1 {
35 class C2 implements I1 {
[all …]
/third_party/skia/third_party/externals/libwebp/src/dsp/
Dmips_macro.h27 I0, I1) \ argument
28 "addq.ph %[" #O0 "], %[" #I0 "], %[" #I1 "] \n\t" \
29 "subq.ph %[" #O1 "], %[" #I0 "], %[" #I1 "] \n\t"
35 I0, I1) \ argument
37 "lh %[" #O1 "], " #I1 "(%[in]) \n\t"
42 I0, I1, I2, I3, I4, I5, I6, I7, I8, I9) \ argument
43 "ulw %[" #O0 "], " #I1 "+" XSTR(I9) "*" #I5 "(%[" #I0 "]) \n\t" \
53 I0, I1, I2, I3, I4, I5, I6, I7) \ argument
56 "mul %[" #O2 "], %[" #I1 "], %[kC2] \n\t" \
57 "mul %[" #O3 "], %[" #I1 "], %[kC1] \n\t" \
[all …]
/third_party/mesa3d/src/panfrost/bifrost/
Dbi_opt_dual_tex.c70 bi_fuse_dual(bi_context *ctx, bi_instr *I1, bi_instr *I2) in bi_fuse_dual() argument
76 .primary_texture_index = I1->texture_index, in bi_fuse_dual()
77 .primary_sampler_index = I1->sampler_index, in bi_fuse_dual()
78 .primary_format = bi_format_for_texs_2d(I1->op), in bi_fuse_dual()
88 assert(I1->lod_mode == I2->lod_mode); in bi_fuse_dual()
93 bi_builder b = bi_init_builder(ctx, bi_before_instr(I1)); in bi_fuse_dual()
96 I1->dest[0], I2->dest[0], bi_null(), /* staging */ in bi_fuse_dual()
97 I1->src[0], I1->src[1], /* coordinates */ in bi_fuse_dual()
98 bi_imm_u32(bi_dual_tex_as_u32(desc)), I1->lod_mode, in bi_fuse_dual()
99 bi_count_write_registers(I1, 0), in bi_fuse_dual()
[all …]

12345678910>>...21