Home
last modified time | relevance | path

Searched refs:I4 (Results 1 – 25 of 200) sorted by relevance

12345678

/third_party/typescript/tests/baselines/reference/
Dqualify.errors.txt3 tests/cases/compiler/qualify.ts(45,13): error TS2741: Property 'zeep' is missing in type 'I4' but r…
4 tests/cases/compiler/qualify.ts(46,13): error TS2740: Type 'I4' is missing the following properties…
5 tests/cases/compiler/qualify.ts(47,13): error TS2322: Type 'I4' is not assignable to type '() => I3…
6 Type 'I4' provides no match for the signature '(): I3'.
7 tests/cases/compiler/qualify.ts(48,13): error TS2322: Type 'I4' is not assignable to type '(k: I3) …
8 Type 'I4' provides no match for the signature '(k: I3): void'.
9 tests/cases/compiler/qualify.ts(49,13): error TS2741: Property 'k' is missing in type 'I4' but requ…
58 export interface I4 {
61 var v1:I4;
64 !!! error TS2741: Property 'zeep' is missing in type 'I4' but required in type 'I3'.
[all …]
DinterfaceImplementation1.types49 interface I4 {
64 var a:I4 = function(){
65 >a : I4
74 >a : I4
76 /*var b:I4 = C2;
80 var c:I4;
81 >c : I4
85 >c : I4
90 >c : I4
Dmutrec.symbols78 interface I4 {
79 >I4 : Symbol(I4, Decl(mutrec.ts, 28, 6))
82 >y : Symbol(I4.y, Decl(mutrec.ts, 30, 14))
89 y:I4;
91 >I4 : Symbol(I4, Decl(mutrec.ts, 28, 6))
94 var i4:I4;
96 >I4 : Symbol(I4, Decl(mutrec.ts, 28, 6))
DinterfaceImplementation1.symbols57 interface I4 {
58 >I4 : Symbol(I4, Decl(interfaceImplementation1.ts, 21, 1))
78 var a:I4 = function(){
80 >I4 : Symbol(I4, Decl(interfaceImplementation1.ts, 21, 1))
88 /*var b:I4 = C2;
92 var c:I4;
94 >I4 : Symbol(I4, Decl(interfaceImplementation1.ts, 21, 1))
DinterfaceExtendingClassWithPrivates2.errors.txt3 …s/interfaceExtendingClassWithPrivates2.ts(12,11): error TS2430: Interface 'I4' incorrectly extends…
4 Property 'x' is private in type 'Bar' but not in type 'I4'.
5 …s/interfaceExtendingClassWithPrivates2.ts(12,11): error TS2430: Interface 'I4' incorrectly extends…
6 Property 'x' is private in type 'Foo' but not in type 'I4'.
26 interface I4 extends Foo, Bar { // error
28 !!! error TS2430: Interface 'I4' incorrectly extends interface 'Bar'.
29 !!! error TS2430: Property 'x' is private in type 'Bar' but not in type 'I4'.
31 !!! error TS2430: Interface 'I4' incorrectly extends interface 'Foo'.
32 !!! error TS2430: Property 'x' is private in type 'Foo' but not in type 'I4'.
DinterfaceDeclaration2.symbols20 interface I4 { }
21 >I4 : Symbol(I4, Decl(interfaceDeclaration2.ts, 7, 17), Decl(interfaceDeclaration2.ts, 10, 3))
23 var I4:number;
24 >I4 : Symbol(I4, Decl(interfaceDeclaration2.ts, 7, 17), Decl(interfaceDeclaration2.ts, 10, 3))
DinterfaceExtendingClassWithProtecteds2.errors.txt3 …interfaceExtendingClassWithProtecteds2.ts(12,11): error TS2430: Interface 'I4' incorrectly extends…
4 Property 'x' is protected but type 'I4' is not a class derived from 'Bar'.
5 …interfaceExtendingClassWithProtecteds2.ts(12,11): error TS2430: Interface 'I4' incorrectly extends…
6 Property 'x' is protected but type 'I4' is not a class derived from 'Foo'.
26 interface I4 extends Foo, Bar { // error
28 !!! error TS2430: Interface 'I4' incorrectly extends interface 'Bar'.
29 !!! error TS2430: Property 'x' is protected but type 'I4' is not a class derived from 'Bar'.
31 !!! error TS2430: Interface 'I4' incorrectly extends interface 'Foo'.
32 !!! error TS2430: Property 'x' is protected but type 'I4' is not a class derived from 'Foo'.
DcircularTypeAliasForUnionWithClass.js15 type T4 = string | I4;
16 class I4 { class
35 var I4 = /** @class */ (function () {
36 function I4() { class in I4
38 return I4;
Dqualify.types84 export interface I4 {
88 var v1:I4;
89 >v1 : I4
94 >v1 : I4
99 >v1 : I4
104 >v1 : I4
110 >v1 : I4
116 >v1 : I4
Dmutrec.types61 interface I4 {
67 y:I4;
68 >y : I4
71 var i4:I4;
72 >i4 : I4
77 >i4 : I4
DcircularTypeAliasForUnionWithClass.types31 type T4 = string | I4;
32 >T4 : string | I4
34 class I4 {
35 >I4 : I4
DinterfaceInheritance.types20 interface I4 {
59 var i4: I4;
60 >i4 : I4
67 >i4 : I4
71 >i5 = i4 : I4
73 >i4 : I4
DcircularTypeAliasForUnionWithClass.symbols38 type T4 = string | I4;
40 >I4 : Symbol(I4, Decl(circularTypeAliasForUnionWithClass.ts, 13, 22))
42 class I4 {
43 >I4 : Symbol(I4, Decl(circularTypeAliasForUnionWithClass.ts, 13, 22))
DinterfaceImplementation1.errors.txt5 …er/interfaceImplementation1.ts(34,5): error TS2322: Type '() => C2' is not assignable to type 'I4'.
39 interface I4 {
49 var a:I4 = function(){
51 !!! error TS2322: Type '() => C2' is not assignable to type 'I4'.
57 /*var b:I4 = C2;
61 var c:I4;
DinterfaceDeclaration1.symbols29 interface I4 {
30 >I4 : Symbol(I4, Decl(interfaceDeclaration1.ts, 12, 1))
33 >class : Symbol(I4.class, Decl(interfaceDeclaration1.ts, 14, 14))
36 >number : Symbol(I4.number, Decl(interfaceDeclaration1.ts, 15, 17))
39 >super : Symbol(I4.super, Decl(interfaceDeclaration1.ts, 16, 18))
42 >prototype : Symbol(I4.prototype, Decl(interfaceDeclaration1.ts, 17, 17))
DinterfaceInheritance.symbols27 interface I4 {
28 >I4 : Symbol(I4, Decl(interfaceInheritance.ts, 11, 1))
31 >one : Symbol(I4.one, Decl(interfaceInheritance.ts, 13, 14))
73 var i4: I4;
75 >I4 : Symbol(I4, Decl(interfaceInheritance.ts, 11, 1))
DcircularTypeAliasForUnionWithInterface.symbols68 type T4 = string | I4;
70 >I4 : Symbol(I4, Decl(circularTypeAliasForUnionWithInterface.ts, 25, 22))
72 interface I4 {
73 >I4 : Symbol(I4, Decl(circularTypeAliasForUnionWithInterface.ts, 25, 22))
DinterfaceInheritance.errors.txt4 …ses/compiler/interfaceInheritance.ts(37,1): error TS2322: Type 'I5' is not assignable to type 'I4'.
7 tests/cases/compiler/interfaceInheritance.ts(38,1): error TS2322: Type 'I4' is not assignable to ty…
26 interface I4 {
51 var i4: I4;
56 !!! error TS2322: Type 'I5' is not assignable to type 'I4'.
61 !!! error TS2322: Type 'I4' is not assignable to type 'I5'.
DinterfaceDeclaration4.symbols47 interface I4 extends Foo.I1 {
48 >I4 : Symbol(I4, Decl(interfaceDeclaration4.ts, 19, 1))
54 >token : Symbol(I4.token, Decl(interfaceDeclaration4.ts, 21, 29))
58 class C2 implements I4 {
60 >I4 : Symbol(I4, Decl(interfaceDeclaration4.ts, 19, 1))
DinterfaceDeclaration2.js11 interface I4 { }
12 var I4:number; variable
23 var I4; variable
DinterfaceDeclaration4.errors.txt4 …ler/interfaceDeclaration4.ts(27,7): error TS2420: Class 'C2' incorrectly implements interface 'I4'.
5 Property 'item' is missing in type 'C2' but required in type 'I4'.
39 interface I4 extends Foo.I1 {
44 class C2 implements I4 {
46 !!! error TS2420: Class 'C2' incorrectly implements interface 'I4'.
47 !!! error TS2420: Property 'item' is missing in type 'C2' but required in type 'I4'.
/third_party/openssl/crypto/poly1305/asm/
Dpoly1305-s390x.pl226 my ($I0, $I1, $I2, $I3, $I4) = map("%v$_",(5..9));
515 vgmf ($I4,5,5); # padbit<<2
525 verimg ($I4,$T3,$mask26,58); # >>38
528 vesrlf ($I4,$I4,2); # >>2
540 vo ($I4,$I4,$T4);
563 vaf ($H4,$H4,$I4);
585 vmalef ($ACC0,$I4,$S1,$ACC0);
586 vmalef ($ACC1,$I4,$S2,$ACC1);
587 vmalef ($ACC2,$I4,$S3,$ACC2);
588 vmalef ($ACC3,$I4,$S4,$ACC3);
[all …]
/third_party/node/deps/openssl/openssl/crypto/poly1305/asm/
Dpoly1305-s390x.pl226 my ($I0, $I1, $I2, $I3, $I4) = map("%v$_",(5..9));
515 vgmf ($I4,5,5); # padbit<<2
525 verimg ($I4,$T3,$mask26,58); # >>38
528 vesrlf ($I4,$I4,2); # >>2
540 vo ($I4,$I4,$T4);
563 vaf ($H4,$H4,$I4);
585 vmalef ($ACC0,$I4,$S1,$ACC0);
586 vmalef ($ACC1,$I4,$S2,$ACC1);
587 vmalef ($ACC2,$I4,$S3,$ACC2);
588 vmalef ($ACC3,$I4,$S4,$ACC3);
[all …]
/third_party/skia/third_party/externals/libwebp/src/dsp/
Dmips_macro.h42 I0, I1, I2, I3, I4, I5, I6, I7, I8, I9) \ argument
46 "ulw %[" #O3 "], " #I4 "+" XSTR(I9) "*" #I8 "(%[" #I0 "]) \n\t"
53 I0, I1, I2, I3, I4, I5, I6, I7) \ argument
70 "addu %[" #IO0 "], %[" #IO0 "], %[" #I4 "] \n\t" \
98 I0, I1, I2, I3, I4, I5, I6, I7) \ argument
99 "addq.ph %[" #O0 "], %[" #I0 "], %[" #I4 "] \n\t" \
100 "subq.ph %[" #O1 "], %[" #I0 "], %[" #I4 "] \n\t" \
161 I0, I1, I2, I3, I4, I5, I6, I7, \ argument
167 "addq.ph %[" #IO4 "], %[" #IO4 "], %[" #I4 "] \n\t" \
/third_party/ffmpeg/libavfilter/
Dvf_xbr.c93 #define FILT2(PE, PI, PH, PF, PG, PC, PD, PB, PA, G5, C4, G0, D0, C1, B1, F4, I4, H5, I5, A0, A1, … argument
97 … const unsigned i = df(PH,PD) + df(PH,I5) + df(PF,I4) + df(PF,PB) + (df(PE,PI)<<2); \
101 … && (!eq(PF,I4) && !eq(PH,I5)) \
127 #define FILT3(PE, PI, PH, PF, PG, PC, PD, PB, PA, G5, C4, G0, D0, C1, B1, F4, I4, H5, I5, A0, A1, … argument
131 … const unsigned i = df(PH,PD) + df(PH,I5) + df(PF,I4) + df(PF,PB) + (df(PE,PI)<<2); \
135 … && (!eq(PF,F4) && !eq(PF,I4) || !eq(PH,H5) && !eq(PH,I5)) \
169 #define FILT4(PE, PI, PH, PF, PG, PC, PD, PB, PA, G5, C4, G0, D0, C1, B1, F4, I4, H5, I5, A0, A1, … argument
173 … const unsigned i = df(PH,PD) + df(PH,I5) + df(PF,I4) + df(PF,PB) + (df(PE,PI)<<2); \
177 … && (!eq(PF,I4) && !eq(PH,I5)) \
279 const uint32_t I4 = sa3[pnext2]; in xbr_filter() local
[all …]

12345678