/third_party/typescript/tests/baselines/reference/ |
D | instantiatedModule.types | 134 module M3 { 135 >M3 : typeof M3 143 var m3: typeof M3; 144 >m3 : typeof M3 145 >M3 : typeof M3 147 var m3 = M3; 148 >m3 : typeof M3 149 >M3 : typeof M3 151 var a3: typeof M3.Color; 152 >a3 : typeof M3.Color [all …]
|
D | assignmentToParenthesizedIdentifiers.types | 97 export module M3 { 98 >M3 : typeof M3 104 M3 = { x: 3 }; // Error 105 >M3 = { x: 3 } : { x: number; } 106 >M3 : any 111 M2.M3 = { x: 3 }; // OK 112 >M2.M3 = { x: 3 } : { x: number; } 113 >M2.M3 : typeof M2.M3 115 >M3 : typeof M2.M3 120 (M2).M3 = { x: 3 }; // OK [all …]
|
D | assignmentToParenthesizedIdentifiers.js | 22 export module M3 { 26 M3 = { x: 3 }; // Error variable 28 M2.M3 = { x: 3 }; // OK 29 (M2).M3 = { x: 3 }; // OK variable 30 (M2.M3) = { x: 3 }; // OK variable 32 M2.M3 = { x: '' }; // Error 33 (M2).M3 = { x: '' }; // Error variable 34 (M2.M3) = { x: '' }; // Error variable 93 var M3; 94 (function (M3) { argument [all …]
|
D | mergeThreeInterfaces2.js | 32 export module M3 { 44 export module M3 { 58 export module M3 { 87 var M3; 88 (function (M3) { argument 92 })(M3 = M2.M3 || (M2.M3 = {})); 95 var M3; 96 (function (M3) { argument 101 })(M3 = M2.M3 || (M2.M3 = {})); 104 var M3; [all …]
|
D | instantiatedModule.js | 46 module M3 { 50 var m3: typeof M3; 51 var m3 = M3; 53 var a3: typeof M3.Color; 55 var a3 = M3.Color; 56 var blue: M3.Color = a3.Blue; 58 var p3: M3.Color; 59 var p3 = M3.Color.Red; 102 var M3; variable 103 (function (M3) { argument [all …]
|
D | mergeTwoInterfaces2.js | 27 export module M3 { 39 export module M3 { 66 var M3; 67 (function (M3) { argument 71 })(M3 = M2.M3 || (M2.M3 = {})); 74 var M3; 75 (function (M3) { argument 79 })(M3 = M2.M3 || (M2.M3 = {}));
|
D | instantiatedModule.symbols | 132 module M3 { 133 >M3 : Symbol(M3, Decl(instantiatedModule.ts, 42, 24)) 141 var m3: typeof M3; 143 >M3 : Symbol(M3, Decl(instantiatedModule.ts, 42, 24)) 145 var m3 = M3; 147 >M3 : Symbol(M3, Decl(instantiatedModule.ts, 42, 24)) 149 var a3: typeof M3.Color; 151 >M3.Color : Symbol(M3.Color, Decl(instantiatedModule.ts, 44, 11)) 152 >M3 : Symbol(M3, Decl(instantiatedModule.ts, 42, 24)) 153 >Color : Symbol(M3.Color, Decl(instantiatedModule.ts, 44, 11)) [all …]
|
D | assignmentToParenthesizedIdentifiers.symbols | 64 export module M3 { 65 >M3 : Symbol(M3, Decl(assignmentToParenthesizedIdentifiers.ts, 19, 11)) 71 M3 = { x: 3 }; // Error 72 >M3 : Symbol(M3, Decl(assignmentToParenthesizedIdentifiers.ts, 19, 11)) 75 M2.M3 = { x: 3 }; // OK 76 >M2.M3 : Symbol(M2.M3, Decl(assignmentToParenthesizedIdentifiers.ts, 19, 11)) 78 >M3 : Symbol(M2.M3, Decl(assignmentToParenthesizedIdentifiers.ts, 19, 11)) 81 (M2).M3 = { x: 3 }; // OK 82 >(M2).M3 : Symbol(M2.M3, Decl(assignmentToParenthesizedIdentifiers.ts, 19, 11)) 84 >M3 : Symbol(M2.M3, Decl(assignmentToParenthesizedIdentifiers.ts, 19, 11)) [all …]
|
D | circularBaseTypes.symbols | 10 interface M2 extends M<M3> {}; // Error 13 >M3 : Symbol(M3, Decl(circularBaseTypes.ts, 3, 30)) 15 type M3 = M2[keyof M2]; // Error 16 >M3 : Symbol(M3, Decl(circularBaseTypes.ts, 3, 30)) 20 function f(m: M3) { 23 >M3 : Symbol(M3, Decl(circularBaseTypes.ts, 3, 30))
|
D | interfaceDeclaration3.symbols | 49 class C5 implements M2.M3.I1 { 51 >M2.M3.I1 : Symbol(M2.M3.I1, Decl(interfaceDeclaration3.ts, 27, 22)) 52 >M2.M3 : Symbol(M2.M3, Decl(interfaceDeclaration3.ts, 26, 40)) 54 >M3 : Symbol(M2.M3, Decl(interfaceDeclaration3.ts, 26, 40)) 55 >I1 : Symbol(M2.M3.I1, Decl(interfaceDeclaration3.ts, 27, 22)) 73 export module M3 { 74 >M3 : Symbol(M3, Decl(interfaceDeclaration3.ts, 26, 40)) 121 class C3 implements M2.M3.I1 { 123 >M2.M3.I1 : Symbol(M2.M3.I1, Decl(interfaceDeclaration3.ts, 27, 22)) 124 >M2.M3 : Symbol(M2.M3, Decl(interfaceDeclaration3.ts, 26, 40)) [all …]
|
D | circularBaseTypes.js | 5 interface M2 extends M<M3> {}; // Error 6 type M3 = M2[keyof M2]; // Error 8 function f(m: M3) { argument 26 interface M2 extends M<M3> { 28 declare type M3 = M2[keyof M2]; 29 declare function f(m: M3): any;
|
D | nonInstantiatedModule.js | 36 module M3 { 74 var M3; variable 75 (function (M3) { argument 81 M3.Utils = Utils; 82 })(M3 || (M3 = {}));
|
D | circularBaseTypes.errors.txt | 2 tests/cases/compiler/circularBaseTypes.ts(5,6): error TS2456: Type alias 'M3' circularly references… 9 interface M2 extends M<M3> {}; // Error 12 type M3 = M2[keyof M2]; // Error 14 !!! error TS2456: Type alias 'M3' circularly references itself. 16 function f(m: M3) {
|
D | mergeThreeInterfaces2.types | 68 export module M3 { 69 >M3 : typeof M3 96 export module M3 { 97 >M3 : typeof M3 130 export module M3 { 131 >M3 : typeof M3
|
D | interfaceDeclaration3.types | 41 class C5 implements M2.M3.I1 { 43 >M2.M3 : any 45 >M3 : any 61 export module M3 { 100 class C3 implements M2.M3.I1 { 102 >M2.M3 : any 104 >M3 : any
|
/third_party/uboot/u-boot-2020.01/board/ti/dra7xx/ |
D | mux_data.h | 15 {GPMC_AD0, (M3 | PIN_INPUT)}, /* gpmc_ad0.vout3_d0 */ 16 {GPMC_AD1, (M3 | PIN_INPUT)}, /* gpmc_ad1.vout3_d1 */ 17 {GPMC_AD2, (M3 | PIN_INPUT)}, /* gpmc_ad2.vout3_d2 */ 18 {GPMC_AD3, (M3 | PIN_INPUT)}, /* gpmc_ad3.vout3_d3 */ 19 {GPMC_AD4, (M3 | PIN_INPUT)}, /* gpmc_ad4.vout3_d4 */ 20 {GPMC_AD5, (M3 | PIN_INPUT)}, /* gpmc_ad5.vout3_d5 */ 21 {GPMC_AD6, (M3 | PIN_INPUT)}, /* gpmc_ad6.vout3_d6 */ 22 {GPMC_AD7, (M3 | PIN_INPUT)}, /* gpmc_ad7.vout3_d7 */ 23 {GPMC_AD8, (M3 | PIN_INPUT)}, /* gpmc_ad8.vout3_d8 */ 24 {GPMC_AD9, (M3 | PIN_INPUT)}, /* gpmc_ad9.vout3_d9 */ [all …]
|
/third_party/uboot/u-boot-2020.01/board/gumstix/duovero/ |
D | duovero_mux_data.h | 56 {GPMC_A16, (PTU | IEN | M3)}, /* gpio_40 */ 57 {GPMC_A17, (PTU | IEN | M3)}, /* gpio_41 - hdmi_ls_oe */ 58 {GPMC_A18, (PTU | IEN | M3)}, /* gpio_42 */ 59 {GPMC_A19, (PTU | IEN | M3)}, /* gpio_43 - wifi_en */ 60 {GPMC_A20, (PTU | IEN | M3)}, /* gpio_44 - eth_irq */ 61 {GPMC_A21, (PTU | IEN | M3)}, /* gpio_45 - eth_nreset */ 62 {GPMC_A22, (PTU | IEN | M3)}, /* gpio_46 - eth_pme */ 63 {GPMC_A23, (PTU | IEN | M3)}, /* gpio_47 */ 64 {GPMC_A24, (PTU | IEN | M3)}, /* gpio_48 - eth_mdix */ 65 {GPMC_A25, (PTU | IEN | M3)}, /* gpio_49 - bt_wakeup */ [all …]
|
/third_party/boost/libs/icl/doc/ |
D | functions_intersection.qbk | 182 T operator & (T, const P&) & | e b s m & | e i b p S1 S2 S3 M1 M3 184 e | s m e | S1 S2 S3 M1 M3 185 b | m i | i S1 S2 S3 M1 M3 186 s | s s m b | M1 M3 187 m | m m m m p | M1 M3 188 S1 | S1 S1 S1 S2 S3 M1 M3 189 S2 | S2 S2 S2 S2 S3 M1 M3 190 S3 | S3 S3 S3 S3 S3 M1 M3 191 M1 | M1 M1 M1 M1 M1 M1 M1 M1 M3 192 M3 | M3 M3 M3 M3 M3 M3 M3 M3 M3 [all …]
|
/third_party/typescript/tests/cases/conformance/expressions/valuesAndReferences/ |
D | assignmentToParenthesizedIdentifiers.ts | 21 export module M3 { 25 M3 = { x: 3 }; // Error 27 M2.M3 = { x: 3 }; // OK 28 (M2).M3 = { x: 3 }; // OK 29 (M2.M3) = { x: 3 }; // OK 31 M2.M3 = { x: '' }; // Error 32 (M2).M3 = { x: '' }; // Error 33 (M2.M3) = { x: '' }; // Error
|
/third_party/typescript/tests/cases/conformance/internalModules/moduleDeclarations/ |
D | instantiatedModule.ts | 45 module M3 { 49 var m3: typeof M3; 50 var m3 = M3; 52 var a3: typeof M3.Color; 54 var a3 = M3.Color; 55 var blue: M3.Color = a3.Blue; 57 var p3: M3.Color; 58 var p3 = M3.Color.Red;
|
/third_party/uboot/u-boot-2020.01/board/compulab/cm_t35/ |
D | cm_t35.c | 254 MUX_VAL(CP(ETK_D0_ES2), (IEN | PTD | EN | M3)); /*HSUSB1_DT0*/ in cm_t3x_set_common_muxconf() 255 MUX_VAL(CP(ETK_D1_ES2), (IEN | PTD | EN | M3)); /*HSUSB1_DT1*/ in cm_t3x_set_common_muxconf() 256 MUX_VAL(CP(ETK_D2_ES2), (IEN | PTD | EN | M3)); /*HSUSB1_DT2*/ in cm_t3x_set_common_muxconf() 257 MUX_VAL(CP(ETK_D7_ES2), (IEN | PTD | EN | M3)); /*HSUSB1_DT3*/ in cm_t3x_set_common_muxconf() 258 MUX_VAL(CP(ETK_D4_ES2), (IEN | PTD | EN | M3)); /*HSUSB1_DT4*/ in cm_t3x_set_common_muxconf() 259 MUX_VAL(CP(ETK_D5_ES2), (IEN | PTD | EN | M3)); /*HSUSB1_DT5*/ in cm_t3x_set_common_muxconf() 260 MUX_VAL(CP(ETK_D6_ES2), (IEN | PTD | EN | M3)); /*HSUSB1_DT6*/ in cm_t3x_set_common_muxconf() 261 MUX_VAL(CP(ETK_D3_ES2), (IEN | PTD | EN | M3)); /*HSUSB1_DT7*/ in cm_t3x_set_common_muxconf() 262 MUX_VAL(CP(ETK_D8_ES2), (IEN | PTD | EN | M3)); /*HSUSB1_DIR*/ in cm_t3x_set_common_muxconf() 263 MUX_VAL(CP(ETK_D9_ES2), (IEN | PTD | EN | M3)); /*HSUSB1_NXT*/ in cm_t3x_set_common_muxconf() [all …]
|
/third_party/boost/boost/math/tools/ |
D | univariate_statistics.hpp | 155 double M3 = 0; in skewness() local 161 M3 = M3 + tmp*((n-1)*(n-2)*delta21*tmp - 3*M2); in skewness() 174 double skew = M3/(M2*sqrt(var)); in skewness() 181 Real M3 = 0; in skewness() local 187 M3 += tmp*((n-1)*(n-2)*delta21*tmp - 3*M2); in skewness() 200 Real skew = M3/(M2*sqrt(var)); in skewness() 222 double M3 = 0; in first_four_moments() local 229 M4 = M4 + tmp*(tmp*tmp*delta21*((n-1)*(n*n-3*n+3)) + 6*tmp*M2 - 4*M3); in first_four_moments() 230 M3 = M3 + tmp*((n-1)*(n-2)*delta21*tmp - 3*M2); in first_four_moments() 236 return std::make_tuple(M1, M2/(n-1), M3/(n-1), M4/(n-1)); in first_four_moments() [all …]
|
/third_party/typescript/tests/baselines/reference/extractFunction/ |
D | extractFunction23.ts | 7 function M3() { } function 19 function M3() { } function 31 function M3() { } function 39 function M3() { } function
|
D | extractFunction24.js | 7 function M3() { } class in Outer 19 function M3() { } 31 function M3() { } 39 function M3() { }
|
D | extractFunction24.ts | 7 function M3() { } 19 function M3() { } 31 function M3() { } 39 function M3() { }
|