/third_party/typescript/tests/cases/compiler/ |
D | intTypeCheck.ts | 40 interface i5 extends i1 { } interface 153 var obj44: i5; 154 var obj45: i5 = {}; 155 var obj46: i5 = new Object(); 156 var obj47: i5 = new obj44; 157 var obj48: i5 = new Base; 158 var obj49: i5 = null; 159 var obj50: i5 = function () { }; 161 var obj52: i5 = <i5> anyVar; 162 var obj53: i5 = new <i5> anyVar; [all …]
|
D | interfaceInheritance.ts | 35 var i5: I5; variable 37 i4 = i5; // should be an error 38 i5 = i4; // should be an error
|
/third_party/typescript/tests/baselines/reference/ |
D | intTypeCheck.types | 90 interface i5 extends i1 { } 436 var obj44: i5; 437 >obj44 : i5 439 var obj45: i5 = {}; 440 >obj45 : i5 443 var obj46: i5 = new Object(); 444 >obj46 : i5 448 var obj47: i5 = new obj44; 449 >obj47 : i5 451 >obj44 : i5 [all …]
|
D | intTypeCheck.js | 41 interface i5 extends i1 { } 154 var obj44: i5; 155 var obj45: i5 = {}; 156 var obj46: i5 = new Object(); 157 var obj47: i5 = new obj44; 158 var obj48: i5 = new Base; 159 var obj49: i5 = null; 160 var obj50: i5 = function () { }; 162 var obj52: i5 = <i5> anyVar; 163 var obj53: i5 = new <i5> anyVar; [all …]
|
D | interfaceInheritance.types | 62 var i5: I5; 63 >i5 : I5 65 i4 = i5; // should be an error 66 >i4 = i5 : I5 68 >i5 : I5 70 i5 = i4; // should be an error 71 >i5 = i4 : I4 72 >i5 : I5
|
D | interfaceInheritance.js | 36 var i5: I5; variable 38 i4 = i5; // should be an error 39 i5 = i4; // should be an error 56 var i5; variable 57 i4 = i5; // should be an error 58 i5 = i4; // should be an error
|
D | interfaceInheritance.symbols | 77 var i5: I5; 78 >i5 : Symbol(i5, Decl(interfaceInheritance.ts, 34, 3)) 81 i4 = i5; // should be an error 83 >i5 : Symbol(i5, Decl(interfaceInheritance.ts, 34, 3)) 85 i5 = i4; // should be an error 86 >i5 : Symbol(i5, Decl(interfaceInheritance.ts, 34, 3))
|
D | intTypeCheck.symbols | 97 interface i5 extends i1 { } 98 >i5 : Symbol(i5, Decl(intTypeCheck.ts, 38, 1)) 437 var obj44: i5; 439 >i5 : Symbol(i5, Decl(intTypeCheck.ts, 38, 1)) 441 var obj45: i5 = {}; 443 >i5 : Symbol(i5, Decl(intTypeCheck.ts, 38, 1)) 445 var obj46: i5 = new Object(); 447 >i5 : Symbol(i5, Decl(intTypeCheck.ts, 38, 1)) 450 var obj47: i5 = new obj44; 452 >i5 : Symbol(i5, Decl(intTypeCheck.ts, 38, 1)) [all …]
|
D | complicatedPrivacy.symbols | 141 export class c_pr implements mglo5.i5, mglo5.i6 { 143 >mglo5.i5 : Symbol(mglo5.i5, Decl(complicatedPrivacy.ts, 94, 14)) 145 >i5 : Symbol(mglo5.i5, Decl(complicatedPrivacy.ts, 94, 14)) 183 export interface i5 { 184 >i5 : Symbol(i5, Decl(complicatedPrivacy.ts, 94, 14)) 187 >f1 : Symbol(i5.f1, Decl(complicatedPrivacy.ts, 95, 25))
|
D | intTypeCheck.errors.txt | 49 …ck.ts(154,5): error TS2739: Type '{}' is missing the following properties from type 'i5': p, p3, p6 51 Type 'Object' is missing the following properties from type 'i5': p, p3, p6 53 Type 'i5' has no construct signatures. 54 ….ts(157,5): error TS2739: Type 'Base' is missing the following properties from type 'i5': p, p3, p6 55 …es/compiler/intTypeCheck.ts(159,5): error TS2322: Type '() => void' is not assignable to type 'i5'. 56 …cases/compiler/intTypeCheck.ts(162,5): error TS2322: Type 'boolean' is not assignable to type 'i5'. 58 tests/cases/compiler/intTypeCheck.ts(162,22): error TS2693: 'i5' only refers to a type, but is bein… 141 interface i5 extends i1 { } 332 var obj44: i5; 333 var obj45: i5 = {}; [all …]
|
D | commentsClass.js | 26 var i5 = new c5(); variable 107 var i5 = new c5(); variable 172 declare var i5: c5;
|
/third_party/cmsis/CMSIS/DSP/Source/TransformFunctions/ |
D | arm_cfft_radix8_f32.c | 52 uint32_t i1, i2, i3, i4, i5, i6, i7, i8; in arm_radix8_butterfly_f32() local 77 i5 = i4 + n2; in arm_radix8_butterfly_f32() 78 i6 = i5 + n2; in arm_radix8_butterfly_f32() 81 r1 = pSrc[2 * i1] + pSrc[2 * i5]; in arm_radix8_butterfly_f32() 82 r5 = pSrc[2 * i1] - pSrc[2 * i5]; in arm_radix8_butterfly_f32() 94 pSrc[2 * i5] = r1 - r2; in arm_radix8_butterfly_f32() 95 r1 = pSrc[2 * i1 + 1] + pSrc[2 * i5 + 1]; in arm_radix8_butterfly_f32() 96 s5 = pSrc[2 * i1 + 1] - pSrc[2 * i5 + 1]; in arm_radix8_butterfly_f32() 108 pSrc[2 * i5 + 1] = r1 - r2; in arm_radix8_butterfly_f32() 178 i5 = i4 + n2; in arm_radix8_butterfly_f32() [all …]
|
D | arm_cfft_radix8_f16.c | 54 uint32_t i1, i2, i3, i4, i5, i6, i7, i8; in arm_radix8_butterfly_f16() local 79 i5 = i4 + n2; in arm_radix8_butterfly_f16() 80 i6 = i5 + n2; in arm_radix8_butterfly_f16() 83 r1 = (_Float16)pSrc[2 * i1] + (_Float16)pSrc[2 * i5]; in arm_radix8_butterfly_f16() 84 r5 = (_Float16)pSrc[2 * i1] - (_Float16)pSrc[2 * i5]; in arm_radix8_butterfly_f16() 96 pSrc[2 * i5] = (_Float16)r1 - (_Float16)r2; in arm_radix8_butterfly_f16() 97 r1 = (_Float16)pSrc[2 * i1 + 1] + (_Float16)pSrc[2 * i5 + 1]; in arm_radix8_butterfly_f16() 98 s5 = (_Float16)pSrc[2 * i1 + 1] - (_Float16)pSrc[2 * i5 + 1]; in arm_radix8_butterfly_f16() 110 pSrc[2 * i5 + 1] = (_Float16)r1 - (_Float16)r2; in arm_radix8_butterfly_f16() 180 i5 = i4 + n2; in arm_radix8_butterfly_f16() [all …]
|
/third_party/glslang/Test/ |
D | hlsl.int.dot.frag | 6 int4 i5 = 5; 12 i5 = dot(i5, i5); 13 return i + i2.xxxx + i3.xyxy + i4.xyzx + i5;
|
/third_party/ltp/tools/sparse/sparse-src/validation/eval/ |
D | unqual02.c | 6 typeof(-x) i5; i5 = 0; // should be OK in test_const() local 18 typeof(-x) i5; pp = &i5; // should be OK in test_volatile() local
|
/third_party/glslang/Test/baseResults/ |
D | hlsl.int.dot.frag.out | 33 0:6 'i5' ( temp 4-component vector of int) 65 0:12 'i5' ( temp 4-component vector of int) 68 0:12 'i5' ( temp 4-component vector of int) 69 0:12 'i5' ( temp 4-component vector of int) 102 0:13 'i5' ( temp 4-component vector of int) 147 0:6 'i5' ( temp 4-component vector of int) 179 0:12 'i5' ( temp 4-component vector of int) 182 0:12 'i5' ( temp 4-component vector of int) 183 0:12 'i5' ( temp 4-component vector of int) 216 0:13 'i5' ( temp 4-component vector of int) [all …]
|
D | include.vert.out | 20 0:15 'i5' ( global 4-component vector of float) 28 0:? 'i5' ( global 4-component vector of float) 55 0:15 'i5' ( global 4-component vector of float) 63 0:? 'i5' ( global 4-component vector of float)
|
/third_party/skia/tests/sksl/shared/ |
D | Hex.asm.frag | 16 OpName %i5 "i5" 68 %i5 = OpVariable %_ptr_Function_int Function 85 OpStore %i5 %int_19132 86 %47 = OpLoad %int %i5 88 OpStore %i5 %48
|
D | Hex.glsl | 13 int i5 = 19132; 14 i5++;
|
/third_party/skia/third_party/externals/tint/test/vk-gl-cts/graphicsfuzz/cov-blockfrequency-several-for-loops/ |
D | 0-opt.wgsl | 12 var i5 : i32; 50 i5 = 0; 52 let x_80 : i32 = i5; 100 let x_112 : i32 = i5; 101 i5 = (x_112 + 1);
|
D | 0-opt.spvasm | 14 OpName %i5 "i5" 54 %i5 = OpVariable %_ptr_Function_int Function 113 OpStore %i5 %int_0 119 %80 = OpLoad %int %i5 179 %112 = OpLoad %int %i5 181 OpStore %i5 %113
|
/third_party/lzma/CPP/Common/ |
D | MyCom.h | 275 #define MY_UNKNOWN_IMP5(i1, i2, i3, i4, i5) MY_UNKNOWN_IMP_SPEC( \ argument 281 MY_QUERYINTERFACE_ENTRY(i5) \ 284 #define MY_UNKNOWN_IMP6(i1, i2, i3, i4, i5, i6) MY_UNKNOWN_IMP_SPEC( \ argument 290 MY_QUERYINTERFACE_ENTRY(i5) \ 294 #define MY_UNKNOWN_IMP7(i1, i2, i3, i4, i5, i6, i7) MY_UNKNOWN_IMP_SPEC( \ argument 300 MY_QUERYINTERFACE_ENTRY(i5) \
|
/third_party/skia/third_party/externals/tint/test/vk-gl-cts/graphicsfuzz/cov-scaled-number-nested-loops/ |
D | 0-opt.spvasm | 17 OpName %i5 "i5" 57 %i5 = OpVariable %_ptr_Function_int Function 124 OpStore %i5 %int_0 130 %86 = OpLoad %int %i5 231 %145 = OpLoad %int %i5 233 OpStore %i5 %146
|
D | 0-opt.wgsl | 17 var i5 : i32; 63 i5 = 0; 65 let x_86 : i32 = i5; 139 let x_145 : i32 = i5; 140 i5 = (x_145 + 1);
|
/third_party/skia/resources/sksl/shared/ |
D | Hex.sksl | 12 int i5 = 0X4abc; 13 i5++;
|