/third_party/typescript/tests/baselines/reference/ |
D | protectedClassPropertyAccessibleWithinSubclass2.js | 9 var d4: Derived4; 15 d4.x; // OK, accessed within their declaring class 25 var d4: Derived4; 31 d4.x; // Error, isn't accessed through an instance of the enclosing class 41 var d4: Derived4; 47 …d4.x; // OK, accessed within a class derived from their declaring class, and through an … 58 var d4: Derived4; 64 d4.x; // Error, isn't accessed through an instance of the enclosing class 74 var d4: Derived4; 80 …d4.x; // OK, accessed within a class derived from their declaring class, and through an … [all …]
|
D | protectedClassPropertyAccessibleWithinNestedSubclass1.js | 11 var d4: Derived4; 17 d4.x; // OK, accessed within their declaring class 31 var d4: Derived4; 37 d4.x; // Error, isn't accessed through an instance of the enclosing class 51 var d4: Derived4; 57 …d4.x; // OK, accessed within a class derived from their declaring class, and through an … 72 var d4: Derived4; 78 d4.x; // Error, isn't accessed through an instance of the enclosing class 92 var d4: Derived4; 98 …d4.x; // OK, accessed within a class derived from their declaring class, and through an … [all …]
|
D | protectedClassPropertyAccessibleWithinSubclass2.types | 23 var d4: Derived4; 24 >d4 : Derived4 46 d4.x; // OK, accessed within their declaring class 47 >d4.x : string 48 >d4 : Derived4 72 var d4: Derived4; 73 >d4 : Derived4 95 d4.x; // Error, isn't accessed through an instance of the enclosing class 96 >d4.x : string 97 >d4 : Derived4 [all …]
|
D | protectedClassPropertyAccessibleWithinNestedSubclass1.types | 29 var d4: Derived4; 30 >d4 : Derived4 52 d4.x; // OK, accessed within their declaring class 53 >d4.x : string 54 >d4 : Derived4 86 var d4: Derived4; 87 >d4 : Derived4 109 d4.x; // Error, isn't accessed through an instance of the enclosing class 110 >d4.x : string 111 >d4 : Derived4 [all …]
|
D | protectedClassPropertyAccessibleWithinSubclass2.symbols | 27 var d4: Derived4; 28 >d4 : Symbol(d4, Decl(protectedClassPropertyAccessibleWithinSubclass2.ts, 7, 11)) 51 d4.x; // OK, accessed within their declaring class 52 >d4.x : Symbol(Base.x, Decl(protectedClassPropertyAccessibleWithinSubclass2.ts, 0, 12)) 53 >d4 : Symbol(d4, Decl(protectedClassPropertyAccessibleWithinSubclass2.ts, 7, 11)) 81 var d4: Derived4; 82 >d4 : Symbol(d4, Decl(protectedClassPropertyAccessibleWithinSubclass2.ts, 23, 11)) 105 d4.x; // Error, isn't accessed through an instance of the enclosing class 106 >d4.x : Symbol(Base.x, Decl(protectedClassPropertyAccessibleWithinSubclass2.ts, 0, 12)) 107 >d4 : Symbol(d4, Decl(protectedClassPropertyAccessibleWithinSubclass2.ts, 23, 11)) [all …]
|
D | protectedClassPropertyAccessibleWithinNestedSubclass1.symbols | 33 var d4: Derived4; 34 >d4 : Symbol(d4, Decl(protectedClassPropertyAccessibleWithinNestedSubclass1.ts, 9, 19)) 57 d4.x; // OK, accessed within their declaring class 58 >d4.x : Symbol(Base.x, Decl(protectedClassPropertyAccessibleWithinNestedSubclass1.ts, 0, 12)) 59 >d4 : Symbol(d4, Decl(protectedClassPropertyAccessibleWithinNestedSubclass1.ts, 9, 19)) 95 var d4: Derived4; 96 >d4 : Symbol(d4, Decl(protectedClassPropertyAccessibleWithinNestedSubclass1.ts, 29, 19)) 119 d4.x; // Error, isn't accessed through an instance of the enclosing class 120 >d4.x : Symbol(Base.x, Decl(protectedClassPropertyAccessibleWithinNestedSubclass1.ts, 0, 12)) 121 >d4 : Symbol(d4, Decl(protectedClassPropertyAccessibleWithinNestedSubclass1.ts, 29, 19)) [all …]
|
D | varBlock.symbols | 44 declare var d3, d4 = 10; 46 >d4 : Symbol(d4, Decl(varBlock.ts, 21, 15)) 54 declare var d2, d3 = 10, d4 = 10; 57 >d4 : Symbol(d4, Decl(varBlock.ts, 25, 28)) 74 var d2, d3 = 10, d4 =10; 77 >d4 : Symbol(d4, Decl(varBlock.ts, 32, 20))
|
D | varBlock.types | 49 declare var d3, d4 = 10; 51 >d4 : number 61 declare var d2, d3 = 10, d4 = 10; 65 >d4 : number 87 var d2, d3 = 10, d4 =10; 91 >d4 : number
|
D | unusedImports_entireImportDeclaration.symbols | 32 import d4, * as ns2 from "./a"; 33 >d4 : Symbol(d4, Decl(b.ts, 5, 6)) 36 d4; 37 >d4 : Symbol(d4, Decl(b.ts, 5, 6))
|
/third_party/typescript/tests/cases/conformance/classes/members/accessibility/ |
D | protectedClassPropertyAccessibleWithinSubclass2.ts | 8 var d4: Derived4; 14 d4.x; // OK, accessed within their declaring class 24 var d4: Derived4; 30 d4.x; // Error, isn't accessed through an instance of the enclosing class 40 var d4: Derived4; 46 …d4.x; // OK, accessed within a class derived from their declaring class, and through an … 57 var d4: Derived4; 63 d4.x; // Error, isn't accessed through an instance of the enclosing class 73 var d4: Derived4; 79 …d4.x; // OK, accessed within a class derived from their declaring class, and through an … [all …]
|
D | protectedClassPropertyAccessibleWithinNestedSubclass1.ts | 10 var d4: Derived4; 16 d4.x; // OK, accessed within their declaring class 30 var d4: Derived4; 36 d4.x; // Error, isn't accessed through an instance of the enclosing class 50 var d4: Derived4; 56 …d4.x; // OK, accessed within a class derived from their declaring class, and through an … 71 var d4: Derived4; 77 d4.x; // Error, isn't accessed through an instance of the enclosing class 91 var d4: Derived4; 97 …d4.x; // OK, accessed within a class derived from their declaring class, and through an … [all …]
|
/third_party/ffmpeg/libavresample/arm/ |
D | resample_neon.S | 105 vld1.32 {d4[0]}, [r3]! /* load src */ 109 vld1.32 {d4}, [r3]! /* load src */ 113 vld1.32 {d4,d5}, [r3]! /* load src */ 116 vmla.f32 d16, d0, d4[0] 119 vmla.f32 d16, d0, d4 122 vmla.f32 d16, d0, d4 126 vmul.f32 d16, d0, d4 145 vld1.32 {d4[0]}, [r3]! /* load src */ 149 vld1.32 {d4}, [r3]! /* load src */ 153 vld1.32 {d4,d5}, [r3]! /* load src */ [all …]
|
/third_party/ffmpeg/libavcodec/arm/ |
D | h264cmc_neon.S | 59 vld1.8 {d4, d5}, [r1], r2 62 vext.8 d5, d4, d5, #1 65 vmull.u8 q8, d4, d0 68 vld1.8 {d4, d5}, [r1], r2 71 vext.8 d5, d4, d5, #1 76 vmlal.u8 q9, d4, d2 107 vld1.8 {d4}, [r1], r2 110 vmull.u8 q8, d4, d0 112 vld1.8 {d4}, [r1], r2 114 vmlal.u8 q9, d4, d1 [all …]
|
D | h264pred_neon.S | 130 vadd.i16 d4, d4, d5 132 vpadd.i16 d4, d4, d5 133 vpadd.i16 d4, d4, d4 134 vshll.s16 q3, d4, #2 135 vaddw.s16 q2, q3, d4 136 vrshrn.s32 d4, q2, #6 138 vtrn.16 d4, d5 139 vadd.i16 d2, d4, d5 146 vshl.i16 d3, d4, #4 150 vmul.i16 q0, q0, d4[0] [all …]
|
D | sbcdsp_neon.S | 41 vld1.16 {d4, d5}, [r0, :64]! 44 vmull.s16 q0, d4, d8 50 vld1.16 {d4, d5}, [r0, :64]! 54 vmlal.s16 q0, d4, d8 60 vld1.16 {d4, d5}, [r0, :64]! 64 vmlal.s16 q0, d4, d8 72 vld1.16 {d2, d3, d4, d5}, [r2, :128]! 79 vmlal.s16 q3, d4, d1 94 vld1.16 {d4, d5}, [r0, :64]! 97 vmull.s16 q6, d4, d8 [all …]
|
D | h264dsp_neon.S | 88 vrshrn.i16 d4, q2, #3 99 vaddw.s8 q14, q14, d4 101 vsubw.s8 q11, q11, d4 114 vld1.8 {d4, d5}, [r0,:128], r1 145 vld1.8 {d4}, [r0], r1 201 vrshrn.i16 d4, q2, #3 204 vmin.s8 d4, d4, d24 207 vmax.s8 d4, d4, d25 210 vand d4, d4, d26 212 vaddw.s8 q14, q14, d4 [all …]
|
D | idctdsp_neon.S | 34 vqmovun.s16 d4, q12 41 vst1.8 {d4}, [r1,:64], r2 65 vqmovn.s16 d4, q10 71 vadd.u8 d4, d4, d31 75 vst1.8 {d4}, [r1,:64], r2 95 vld1.16 {d4-d5}, [r0,:128]! 102 vqmovun.s16 d4, q2 108 vst1.8 {d4}, [r3,:64], r2 115 vld1.16 {d4-d5}, [r0,:128]! 120 vqmovun.s16 d4, q2 [all …]
|
D | sbrdsp_neon.S | 90 vld1.32 {d3,d4}, [r0,:128]! 106 vld1.32 {d3,d4}, [r0,:128]! 114 vswp d4, d5 117 vst2.32 {d2[0],d4[0]}, [r2,:64]! 144 vst2.32 {d4,d6}, [r0,:128]! 179 vadd.f32 d3, d4, d3 235 vmla.f32 d6, d4, d18 261 vmla.f32 d2, d1, d4 263 vmla.f32 d6, d0, d4 265 vmla.f32 d2, d4, d5 [all …]
|
D | mdct_neon.S | 48 vmul.f32 d4, d0, d3 50 vsub.f32 d4, d6, d4 63 vst2.32 {d4[0],d5[0]}, [r6,:64] 64 vst2.32 {d4[1],d5[1]}, [r8,:64] 67 vst2.32 {d4[0],d5[0]}, [r6,:64] 68 vst2.32 {d4[1],d5[1]}, [r8,:64] 96 vmul.f32 d4, d1, d18 105 vsub.f32 d4, d4, d24 112 vst2.32 {d4,d6}, [r0,:128], r7 117 vst2.32 {d4,d6}, [r0,:128] [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | jrevdct.c | 218 int32_t d0, d1, d2, d3, d4, d5, d6, d7; variable 244 d4 = dataptr[2]; 251 if ((d1 | d2 | d3 | d4 | d5 | d6 | d7) == 0) { 278 tmp0 = (d0 + d4) * CONST_SCALE; 279 tmp1 = (d0 - d4) * CONST_SCALE; 290 tmp0 = (d0 + d4) * CONST_SCALE; 291 tmp1 = (d0 - d4) * CONST_SCALE; 304 tmp0 = (d0 + d4) * CONST_SCALE; 305 tmp1 = (d0 - d4) * CONST_SCALE; 313 tmp10 = tmp13 = (d0 + d4) * CONST_SCALE; [all …]
|
/third_party/boost/libs/geometry/test/algorithms/ |
D | test_centroid.hpp | 69 …try const& geometry, T const& d1, T const& d2, T const& d3 = T(), T const& d4 = T(), T const& d5 =… in test_centroid() argument 74 …check_result<bg::dimension<Geometry>::type::value>::apply(c1, boost::make_tuple(d1, d2, d3, d4, d5… in test_centroid() 93 void test_centroid(std::string const& wkt, T const& d1, T const& d2, T const& d3 = T(), T const& d4… in test_centroid() argument 98 test_centroid<Geometry, Point>(geometry, d1, d2, d3, d4, d5); in test_centroid() 102 …try const& geometry, T const& d1, T const& d2, T const& d3 = T(), T const& d4 = T(), T const& d5 =… in test_centroid() argument 104 test_centroid<Geometry, typename bg::point_type<Geometry>::type>(geometry, d1, d2, d3, d4, d5); in test_centroid() 108 void test_centroid(std::string const& wkt, T const& d1, T const& d2, T const& d3 = T(), T const& d4… in test_centroid() argument 110 test_centroid<Geometry, typename bg::point_type<Geometry>::type>(wkt, d1, d2, d3, d4, d5); in test_centroid()
|
/third_party/musl/porting/liteos_a/user/src/string/arm/ |
D | memcmp.S | 71 vld1.8 {d4 - d7}, [r1]! 77 …vorr d4, d0, d1 @ d4: Save the result of calculating whether the first 16 bytes are eq… 79 … vorr d6, d4, d5 @ d6: Save the result of 32 bytes calculation whether they are equal. 91 vmov r3, r4, d4 144 vld1.8 {d4 - d5}, [r1]! 149 vorr d4, d0, d1 150 vmov r3, r4, d4 165 vld1.8 {d4}, [r1]! 166 vsub.i8 d0, d0, d4
|
/third_party/musl/arch/m68k/ |
D | syscall_arch.h | 54 register unsigned long d4 __asm__("d4") = d; in __syscall4() 56 : "r"(d1), "r"(d2), "r"(d3), "r"(d4) in __syscall4() 67 register unsigned long d4 __asm__("d4") = d; in __syscall5() 70 : "r"(d1), "r"(d2), "r"(d3), "r"(d4), "r"(d5) in __syscall5() 81 register unsigned long d4 __asm__("d4") = d; in __syscall6() 85 : "r"(d1), "r"(d2), "r"(d3), "r"(d4), "r"(d5), "r"(a0) in __syscall6()
|
/third_party/typescript/tests/cases/fourslash/ |
D | findReferencesJSXTagName3.ts | 23 const [d0Def, d0, c0Def, c0, d1Def, d1, d2Def, d2, d3, d4, c1Def, c1, c2] = test.ranges(); constant 25 const allD = [d0, d1, d2, d3, d4]; constant 32 verify.documentHighlightsOf(d0, [d0, d1, d2, d3, d4]); 33 verify.rangesAreDocumentHighlights([d1, d4]);
|
/third_party/skia/third_party/externals/spirv-cross/shaders/desktop-only/comp/ |
D | extended-arithmetic.desktop.comp | 9 uvec4 a4, b4, c4, d4; 17 ivec4 a4, b4, c4, d4; 25 u.c4 = uaddCarry(u.a4, u.b4, u.d4); 30 u.c4 = usubBorrow(u.a4, u.b4, u.d4); 35 umulExtended(u.a4, u.b4, u.c4, u.d4); 40 imulExtended(i.a4, i.b4, i.c4, i.d4);
|