/third_party/typescript/tests/baselines/reference/ |
D | interfaceInheritance2.symbols | 2 interface I6 { 3 >I6 : Symbol(I6, Decl(interfaceInheritance2.ts, 0, 0)) 8 interface I7 extends I6 { } 10 >I6 : Symbol(I6, Decl(interfaceInheritance2.ts, 0, 0))
|
D | interfaceDeclaration1.symbols | 53 interface I6 { 54 >I6 : Symbol(I6, Decl(interfaceDeclaration1.ts, 23, 1)) 59 interface I7 extends I6 { } 61 >I6 : Symbol(I6, Decl(interfaceDeclaration1.ts, 23, 1))
|
D | typeAliases.symbols | 54 interface I6 { x : string } 55 >I6 : Symbol(I6, Decl(typeAliases.ts, 20, 11)) 56 >x : Symbol(I6.x, Decl(typeAliases.ts, 22, 14)) 58 type T6 = I6; 60 >I6 : Symbol(I6, Decl(typeAliases.ts, 20, 11)) 62 var x6: I6; 64 >I6 : Symbol(I6, Decl(typeAliases.ts, 20, 11))
|
D | typeAliases.types | 49 interface I6 { x : string } 52 type T6 = I6; 53 >T6 : I6 55 var x6: I6; 56 >x6 : I6 59 >x6 : I6
|
D | interfaceInheritance2.js | 2 interface I6 { 6 interface I7 extends I6 { }
|
D | interfaceInheritance2.types | 2 interface I6 { 6 interface I7 extends I6 { }
|
D | typeAliases.js | 24 interface I6 { x : string } 25 type T6 = I6; 26 var x6: I6;
|
D | interfaceDeclaration1.js | 27 interface I6 { 31 interface I7 extends I6 { }
|
D | unparenthesizedFunctionTypeInUnionOrIntersection.symbols | 48 type I6 = 49 >I6 : Symbol(I6, Decl(unparenthesizedFunctionTypeInUnionOrIntersection.ts, 14, 54))
|
D | unparenthesizedConstructorTypeInUnionOrIntersection.symbols | 48 type I6 = 49 >I6 : Symbol(I6, Decl(unparenthesizedConstructorTypeInUnionOrIntersection.ts, 14, 58))
|
D | interfaceDeclaration1.types | 42 interface I6 { 46 interface I7 extends I6 { }
|
D | interfaceExtendsObjectIntersection.types | 41 interface I6 extends T6 { x: string } 83 class C6 extends Constructor<I6>() { x: string } 85 >Constructor<I6>() : I6
|
D | interfaceExtendsObjectIntersection.symbols | 53 interface I6 extends T6 { x: string } 54 >I6 : Symbol(I6, Decl(interfaceExtendsObjectIntersection.ts, 12, 37)) 56 >x : Symbol(I6.x, Decl(interfaceExtendsObjectIntersection.ts, 13, 25)) 104 class C6 extends Constructor<I6>() { x: string } 107 >I6 : Symbol(I6, Decl(interfaceExtendsObjectIntersection.ts, 12, 37))
|
D | interfaceDeclaration4.symbols | 71 interface I6 extends Foo.C1 { } 72 >I6 : Symbol(I6, Decl(interfaceDeclaration4.ts, 30, 28))
|
D | unparenthesizedFunctionTypeInUnionOrIntersection.types | 49 type I6 = 50 >I6 : string & ((foo: any) => void)
|
D | unparenthesizedConstructorTypeInUnionOrIntersection.types | 49 type I6 = 50 >I6 : string & (new (foo: any) => void)
|
D | subtypingWithGenericCallSignaturesWithOptionalParameters.js | 34 interface I6<T> extends Base<T> { 122 interface I6<T> extends Base2 { 210 interface I6 extends Base2 {
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
D | mips_macro.h | 42 I0, I1, I2, I3, I4, I5, I6, I7, I8, I9) \ argument 44 "ulw %[" #O1 "], " #I2 "+" XSTR(I9) "*" #I6 "(%[" #I0 "]) \n\t" \ 53 I0, I1, I2, I3, I4, I5, I6, I7) \ argument 72 "subu %[" #IO2 "], %[" #IO2 "], %[" #I6 "] \n\t" \ 98 I0, I1, I2, I3, I4, I5, I6, I7) \ argument 103 "addq.ph %[" #O4 "], %[" #I2 "], %[" #I6 "] \n\t" \ 104 "subq.ph %[" #O5 "], %[" #I2 "], %[" #I6 "] \n\t" \ 161 I0, I1, I2, I3, I4, I5, I6, I7, \ argument 169 "addq.ph %[" #IO6 "], %[" #IO6 "], %[" #I6 "] \n\t" \
|
/third_party/typescript/tests/cases/conformance/types/typeAliases/ |
D | typeAliases.ts | 23 interface I6 { x : string } interface 24 type T6 = I6; 25 var x6: I6;
|
/third_party/typescript/tests/cases/compiler/ |
D | interfaceInheritance2.ts | 1 interface I6 { interface 5 interface I7 extends I6 { }
|
D | interfaceDeclaration1.ts | 26 interface I6 { interface 30 interface I7 extends I6 { }
|
/third_party/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/ |
D | interfaceExtendsObjectIntersection.ts | 16 interface I6 extends T6 { x: string } interface 27 class C6 extends Constructor<I6>() { x: string }
|
/third_party/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/ |
D | constructSignatureAssignabilityInInheritance3.ts | 66 interface I6 extends A { interface 86 interface I6 extends B { interface
|
D | callSignatureAssignabilityInInheritance3.ts | 76 interface I6 extends A { interface 100 interface I6 extends B { interface
|
/third_party/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/ |
D | subtypingWithGenericCallSignaturesWithOptionalParameters.ts | 33 interface I6<T> extends Base<T> { interface 121 interface I6<T> extends Base2 { interface 209 interface I6 extends Base2 { interface
|