/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 | 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 | 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 | 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 | 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
|
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 | scopeResolutionIdentifiers.js | 32 module M3 { 70 var M3; variable 71 (function (M3) { argument 78 })(M3 || (M3 = {}));
|
/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/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 | 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() { }
|
D | extractFunction23.ts | 7 function M3() { } function 19 function M3() { } function 31 function M3() { } function 39 function M3() { } function
|
/third_party/typescript/tests/baselines/reference/extractConstant/ |
D | extractConstant_ClassInsertionPosition3.ts | 7 M3() { method in C 17 M3() { method in C 30 M3() { method in C 41 M3() { method in C
|
D | extractConstant_ClassInsertionPosition2.ts | 7 M3() { method in C 17 M3() { method in C 30 M3() { method in C 41 M3() { method in C
|