/third_party/typescript/tests/baselines/reference/ |
D | interfaceInheritance2.symbols | 8 interface I7 extends I6 { } 9 >I7 : Symbol(I7, Decl(interfaceInheritance2.ts, 2, 1)) 12 var v1:I7; 14 >I7 : Symbol(I7, Decl(interfaceInheritance2.ts, 2, 1))
|
D | interfaceInheritance2.types | 6 interface I7 extends I6 { } 8 var v1:I7; 9 >v1 : I7 13 >v1 : I7
|
D | interfaceDeclaration1.types | 46 interface I7 extends I6 { } 48 var v1:I7; 49 >v1 : I7 53 >v1 : I7
|
D | interfaceDeclaration1.symbols | 59 interface I7 extends I6 { } 60 >I7 : Symbol(I7, Decl(interfaceDeclaration1.ts, 27, 1)) 63 var v1:I7; 65 >I7 : Symbol(I7, Decl(interfaceDeclaration1.ts, 27, 1))
|
D | interfaceInheritance2.js | 6 interface I7 extends I6 { } 8 var v1:I7;
|
D | interfaceDeclaration1.js | 31 interface I7 extends I6 { } 33 var v1:I7;
|
D | interfaceExtendsObjectIntersection.types | 44 interface I7 extends T7 { x: string } 89 class C7 extends Constructor<I7>() { x: string } 91 >Constructor<I7>() : I7
|
D | interfaceExtendsObjectIntersection.symbols | 58 interface I7 extends T7 { x: string } 59 >I7 : Symbol(I7, Decl(interfaceExtendsObjectIntersection.ts, 13, 37)) 61 >x : Symbol(I7.x, Decl(interfaceExtendsObjectIntersection.ts, 14, 25)) 110 class C7 extends Constructor<I7>() { x: string } 113 >I7 : Symbol(I7, Decl(interfaceExtendsObjectIntersection.ts, 13, 37))
|
D | subtypingWithGenericCallSignaturesWithOptionalParameters.js | 39 interface I7<T> extends Base<T> { 127 interface I7<T> extends Base2 { 215 interface I7 extends Base2 {
|
D | subtypingWithGenericConstructSignaturesWithOptionalParameters.js | 39 interface I7<T> extends Base<T> { 127 interface I7<T> extends Base2 { 215 interface I7 extends Base2 {
|
D | constructSignatureAssignabilityInInheritance3.symbols | 263 interface I7 extends A { 264 >I7 : Symbol(I7, Decl(constructSignatureAssignabilityInInheritance3.ts, 67, 9)) 268 >a15 : Symbol(I7.a15, Decl(constructSignatureAssignabilityInInheritance3.ts, 69, 32)) 331 interface I7 extends C { 332 >I7 : Symbol(I7, Decl(constructSignatureAssignabilityInInheritance3.ts, 92, 9)) 336 >a2 : Symbol(I7.a2, Decl(constructSignatureAssignabilityInInheritance3.ts, 94, 32))
|
D | constructSignatureAssignabilityInInheritance3.errors.txt | 22 …ctSignatureAssignabilityInInheritance3.ts(70,19): error TS2430: Interface 'I7' incorrectly extends… 34 …ctSignatureAssignabilityInInheritance3.ts(95,19): error TS2430: Interface 'I7' incorrectly extends… 134 interface I7 extends A { 136 !!! error TS2430: Interface 'I7' incorrectly extends interface 'A'. 173 interface I7 extends C { 175 !!! error TS2430: Interface 'I7' incorrectly extends interface 'C'.
|
D | callSignatureAssignabilityInInheritance3.errors.txt | 22 …llSignatureAssignabilityInInheritance3.ts(80,19): error TS2430: Interface 'I7' incorrectly extends… 34 …lSignatureAssignabilityInInheritance3.ts(109,19): error TS2430: Interface 'I7' incorrectly extends… 144 interface I7 extends A { 146 !!! error TS2430: Interface 'I7' incorrectly extends interface 'A'. 187 interface I7 extends C { 189 !!! error TS2430: Interface 'I7' incorrectly extends interface 'C'.
|
D | subtypesOfAny.symbols | 72 interface I7 { 73 >I7 : Symbol(I7, Decl(subtypesOfAny.ts, 35, 1)) 79 >foo : Symbol(I7.foo, Decl(subtypesOfAny.ts, 39, 21))
|
D | subtypingWithConstructSignaturesWithOptionalParameters.symbols | 83 interface I7 extends Base { 84 >I7 : Symbol(I7, Decl(subtypingWithConstructSignaturesWithOptionalParameters.ts, 33, 1)) 88 >a3 : Symbol(I7.a3, Decl(subtypingWithConstructSignaturesWithOptionalParameters.ts, 36, 27))
|
D | subtypingWithCallSignaturesWithOptionalParameters.symbols | 83 interface I7 extends Base { 84 >I7 : Symbol(I7, Decl(subtypingWithCallSignaturesWithOptionalParameters.ts, 33, 1)) 88 >a3 : Symbol(I7.a3, Decl(subtypingWithCallSignaturesWithOptionalParameters.ts, 36, 27))
|
/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 45 "ulw %[" #O2 "], " #I3 "+" XSTR(I9) "*" #I7 "(%[" #I0 "]) \n\t" \ 53 I0, I1, I2, I3, I4, I5, I6, I7) \ argument 73 "subu %[" #IO3 "], %[" #IO3 "], %[" #I7 "] \n\t" 98 I0, I1, I2, I3, I4, I5, I6, I7) \ argument 105 "addq.ph %[" #O6 "], %[" #I3 "], %[" #I7 "] \n\t" \ 106 "subq.ph %[" #O7 "], %[" #I3 "], %[" #I7 "] \n\t" \ 161 I0, I1, I2, I3, I4, I5, I6, I7, \ argument 170 "addq.ph %[" #IO7 "], %[" #IO7 "], %[" #I7 "] \n\t" \
|
/third_party/typescript/tests/cases/compiler/ |
D | interfaceInheritance2.ts | 5 interface I7 extends I6 { } interface 7 var v1:I7;
|
D | interfaceDeclaration1.ts | 30 interface I7 extends I6 { } interface 32 var v1:I7;
|
/third_party/typescript/tests/cases/conformance/interfaces/interfaceDeclarations/ |
D | interfaceExtendsObjectIntersection.ts | 17 interface I7 extends T7 { x: string } interface 28 class C7 extends Constructor<I7>() { x: string }
|
/third_party/typescript/tests/cases/conformance/types/typeRelationships/assignmentCompatibility/ |
D | constructSignatureAssignabilityInInheritance3.ts | 70 interface I7 extends A { interface 95 interface I7 extends C { interface
|
D | callSignatureAssignabilityInInheritance3.ts | 80 interface I7 extends A { interface 109 interface I7 extends C { interface
|
/third_party/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/ |
D | subtypingWithGenericCallSignaturesWithOptionalParameters.ts | 38 interface I7<T> extends Base<T> { interface 126 interface I7<T> extends Base2 { interface 214 interface I7 extends Base2 { interface
|
D | subtypingWithGenericConstructSignaturesWithOptionalParameters.ts | 38 interface I7<T> extends Base<T> { interface 126 interface I7<T> extends Base2 { interface 214 interface I7 extends Base2 { interface
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/ |
D | SparcFrameLowering.cpp | 171 unsigned regInRA = RegInfo.getDwarfRegNum(SP::I7, true); in emitPrologue() 309 for (unsigned reg = SP::I0; reg <= SP::I7; ++reg) in verifyLeafProcRegUse() 335 for (unsigned reg = SP::I0; reg <= SP::I7; ++reg) { in remapRegsForLeafProc() 361 for (unsigned reg = SP::I0; reg <= SP::I7; ++reg) { in remapRegsForLeafProc()
|