/third_party/flutter/skia/third_party/externals/sdl/src/render/ |
D | SDL_d3dmath.c | 41 Float4X4 MatrixMultiply(Float4X4 M1, Float4X4 M2) in MatrixMultiply() argument 44 m._11 = M1._11 * M2._11 + M1._12 * M2._21 + M1._13 * M2._31 + M1._14 * M2._41; in MatrixMultiply() 45 m._12 = M1._11 * M2._12 + M1._12 * M2._22 + M1._13 * M2._32 + M1._14 * M2._42; in MatrixMultiply() 46 m._13 = M1._11 * M2._13 + M1._12 * M2._23 + M1._13 * M2._33 + M1._14 * M2._43; in MatrixMultiply() 47 m._14 = M1._11 * M2._14 + M1._12 * M2._24 + M1._13 * M2._34 + M1._14 * M2._44; in MatrixMultiply() 48 m._21 = M1._21 * M2._11 + M1._22 * M2._21 + M1._23 * M2._31 + M1._24 * M2._41; in MatrixMultiply() 49 m._22 = M1._21 * M2._12 + M1._22 * M2._22 + M1._23 * M2._32 + M1._24 * M2._42; in MatrixMultiply() 50 m._23 = M1._21 * M2._13 + M1._22 * M2._23 + M1._23 * M2._33 + M1._24 * M2._43; in MatrixMultiply() 51 m._24 = M1._21 * M2._14 + M1._22 * M2._24 + M1._23 * M2._34 + M1._24 * M2._44; in MatrixMultiply() 52 m._31 = M1._31 * M2._11 + M1._32 * M2._21 + M1._33 * M2._31 + M1._34 * M2._41; in MatrixMultiply() [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | mergeThreeInterfaces2.js | 5 module M2 { 15 module M2 { 31 module M2 { 43 module M2 { 57 module M2 { 73 var M2; 74 (function (M2) { argument 78 })(M2 || (M2 = {})); 79 (function (M2) { argument 84 })(M2 || (M2 = {})); [all …]
|
D | instantiatedModule.types | 51 module M2 { 52 >M2 : typeof M2 76 var m2: typeof M2; 77 >m2 : typeof M2 78 >M2 : typeof M2 80 var m2 = M2; 81 >m2 : typeof M2 82 >M2 : typeof M2 85 var a2: typeof M2.Point; 86 >a2 : typeof M2.Point [all …]
|
D | assignmentToParenthesizedIdentifiers.types | 94 module M2 { 95 >M2 : typeof M2 111 M2.M3 = { x: 3 }; // OK 112 >M2.M3 = { x: 3 } : { x: number; } 113 >M2.M3 : typeof M2.M3 114 >M2 : typeof M2 115 >M3 : typeof M2.M3 120 (M2).M3 = { x: 3 }; // OK 121 >(M2).M3 = { x: 3 } : { x: number; } 122 >(M2).M3 : typeof M2.M3 [all …]
|
D | mergeTwoInterfaces2.js | 5 module M2 { 15 module M2 { 26 module M2 { 38 module M2 { 53 var M2; 54 (function (M2) { argument 58 })(M2 || (M2 = {})); 59 (function (M2) { argument 63 })(M2 || (M2 = {})); 65 (function (M2) { argument [all …]
|
D | mixinClassesMembers.types | 34 declare class M2 { 35 >M2 : M2 57 declare const Mixed3: typeof M2 & typeof M1 & typeof C1; 58 >Mixed3 : typeof M2 & typeof M1 & typeof C1 59 >M2 : typeof M2 63 declare const Mixed4: typeof C1 & typeof M1 & typeof M2; 64 >Mixed4 : typeof C1 & typeof M1 & typeof M2 67 >M2 : typeof M2 69 declare const Mixed5: typeof M1 & typeof M2; 70 >Mixed5 : typeof M1 & typeof M2 [all …]
|
D | relativePathToDeclarationFile.types | 11 if(foo.M2.x){ 12 >foo.M2.x : boolean 13 >foo.M2 : typeof foo.M2 15 >M2 : typeof foo.M2 18 var x = new relMod(other.M2.x.charCodeAt(0)); 20 >new relMod(other.M2.x.charCodeAt(0)) : relMod 22 >other.M2.x.charCodeAt(0) : number 23 >other.M2.x.charCodeAt : (index: number) => number 24 >other.M2.x : string 25 >other.M2 : typeof other.M2 [all …]
|
D | relativePathToDeclarationFile.symbols | 11 if(foo.M2.x){ 12 >foo.M2.x : Symbol(foo.M2.x, Decl(foo.d.ts, 1, 11)) 13 >foo.M2 : Symbol(foo.M2, Decl(foo.d.ts, 0, 0)) 15 >M2 : Symbol(foo.M2, Decl(foo.d.ts, 0, 0)) 16 >x : Symbol(foo.M2.x, Decl(foo.d.ts, 1, 11)) 18 var x = new relMod(other.M2.x.charCodeAt(0)); 21 >other.M2.x.charCodeAt : Symbol(String.charCodeAt, Decl(lib.es5.d.ts, --, --)) 22 >other.M2.x : Symbol(other.M2.x, Decl(other.d.ts, 1, 11)) 23 >other.M2 : Symbol(other.M2, Decl(other.d.ts, 0, 0)) 25 >M2 : Symbol(other.M2, Decl(other.d.ts, 0, 0)) [all …]
|
D | assignmentToParenthesizedIdentifiers.js | 21 module M2 { 28 M2.M3 = { x: 3 }; // OK 29 (M2).M3 = { x: 3 }; // OK 30 (M2.M3) = { x: 3 }; // OK 32 M2.M3 = { x: '' }; // Error 33 (M2).M3 = { x: '' }; // Error 34 (M2.M3) = { x: '' }; // Error 91 var M2; variable 92 (function (M2) { argument 95 })(M3 = M2.M3 || (M2.M3 = {})); [all …]
|
D | interfaceDeclaration3.symbols | 39 class C4 implements M2.I1 { 41 >M2.I1 : Symbol(M2.I1, Decl(interfaceDeclaration3.ts, 24, 18)) 42 >M2 : Symbol(M2, Decl(interfaceDeclaration3.ts, 22, 1)) 43 >I1 : Symbol(M2.I1, Decl(interfaceDeclaration3.ts, 24, 18)) 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)) 53 >M2 : Symbol(M2, Decl(interfaceDeclaration3.ts, 22, 1)) 54 >M3 : Symbol(M2.M3, Decl(interfaceDeclaration3.ts, 26, 40)) 55 >I1 : Symbol(M2.M3.I1, Decl(interfaceDeclaration3.ts, 27, 22)) [all …]
|
D | enumMergingErrors.js | 32 module M2 { 35 module M2 { 38 module M2 { 111 var M2; variable 112 (function (M2) { argument 116 })(E1 = M2.E1 || (M2.E1 = {})); 117 })(M2 || (M2 = {})); 118 (function (M2) { argument 122 })(E1 = M2.E1 || (M2.E1 = {})); 123 })(M2 || (M2 = {})); [all …]
|
D | assignmentToParenthesizedIdentifiers.symbols | 61 module M2 { 62 >M2 : Symbol(M2, Decl(assignmentToParenthesizedIdentifiers.ts, 17, 15)) 75 M2.M3 = { x: 3 }; // OK 76 >M2.M3 : Symbol(M2.M3, Decl(assignmentToParenthesizedIdentifiers.ts, 19, 11)) 77 >M2 : Symbol(M2, Decl(assignmentToParenthesizedIdentifiers.ts, 17, 15)) 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)) 83 >M2 : Symbol(M2, Decl(assignmentToParenthesizedIdentifiers.ts, 17, 15)) 84 >M3 : Symbol(M2.M3, Decl(assignmentToParenthesizedIdentifiers.ts, 19, 11)) [all …]
|
D | interfaceDeclaration3.types | 33 class C4 implements M2.I1 { 35 >M2 : typeof M2 41 class C5 implements M2.M3.I1 { 43 >M2.M3 : any 44 >M2 : typeof M2 52 export module M2 { 53 >M2 : typeof M2 92 class C2 implements M2.I1 { 94 >M2 : typeof M2 100 class C3 implements M2.M3.I1 { [all …]
|
D | invalidNestedModules.js | 17 module M2.X { 23 module M2 { 59 var M2; variable 60 (function (M2) { argument 69 })(X = M2.X || (M2.X = {})); 70 })(M2 || (M2 = {})); 71 (function (M2) { argument 74 })(X = M2.X || (M2.X = {})); 75 })(M2 || (M2 = {}));
|
D | instantiatedModule.js | 22 module M2 { 32 var m2: typeof M2; 33 var m2 = M2; 36 var a2: typeof M2.Point; 38 var a2 = M2.Point; 39 var o: M2.Point = a2.Origin(); 42 var p2: M2.Point; 44 var p2 = new M2.Point(); 79 var M2; variable 80 (function (M2) { argument [all …]
|
D | nestedModules.types | 29 module M2.X { 37 module M2 { 38 >M2 : typeof M2 48 var m = M2.X; 49 >m : typeof M2.X 50 >M2.X : typeof M2.X 51 >M2 : typeof M2 52 >X : typeof M2.X 60 >m : typeof M2.X 68 var p: M2.X.Point; [all …]
|
D | instantiatedModule.symbols | 52 module M2 { 53 >M2 : Symbol(M2, Decl(instantiatedModule.ts, 16, 16)) 75 var m2: typeof M2; 77 >M2 : Symbol(M2, Decl(instantiatedModule.ts, 16, 16)) 79 var m2 = M2; 81 >M2 : Symbol(M2, Decl(instantiatedModule.ts, 16, 16)) 84 var a2: typeof M2.Point; 86 >M2.Point : Symbol(M2.Point, Decl(instantiatedModule.ts, 20, 11)) 87 >M2 : Symbol(M2, Decl(instantiatedModule.ts, 16, 16)) 88 >Point : Symbol(M2.Point, Decl(instantiatedModule.ts, 20, 11)) [all …]
|
D | nestedModules.js | 15 module M2.X { 21 module M2 { 27 var m = M2.X; 32 var p: M2.X.Point; 43 var M2; variable 44 (function (M2) { argument 47 })(X = M2.X || (M2.X = {})); 48 })(M2 || (M2 = {})); 49 var m = M2.X;
|
D | nameWithRelativePaths.js | 12 export module M2 { 21 if(foo2.M2.x){ 42 exports.M2 = void 0; 43 var M2; variable 44 (function (M2) { argument 45 M2.x = true; 46 })(M2 = exports.M2 || (exports.M2 = {})); 53 if (foo2.M2.x) {
|
D | nestedModules.symbols | 33 module M2.X { 34 >M2 : Symbol(M2, Decl(nestedModules.ts, 11, 1), Decl(nestedModules.ts, 17, 1)) 46 module M2 { 47 >M2 : Symbol(M2, Decl(nestedModules.ts, 11, 1), Decl(nestedModules.ts, 17, 1)) 57 var m = M2.X; 59 >M2.X : Symbol(M2.X, Decl(nestedModules.ts, 13, 10), Decl(nestedModules.ts, 19, 11)) 60 >M2 : Symbol(M2, Decl(nestedModules.ts, 11, 1), Decl(nestedModules.ts, 17, 1)) 61 >X : Symbol(M2.X, Decl(nestedModules.ts, 13, 10), Decl(nestedModules.ts, 19, 11)) 68 >m.Point : Symbol(M2.X.Point, Decl(nestedModules.ts, 13, 13), Decl(nestedModules.ts, 21, 18)) 70 >Point : Symbol(M2.X.Point, Decl(nestedModules.ts, 13, 13), Decl(nestedModules.ts, 21, 18)) [all …]
|
D | interfaceDeclaration3.js | 17 class C4 implements M2.I1 { 21 class C5 implements M2.M3.I1 { 26 export module M2 { 47 class C2 implements M2.I1 { 51 class C3 implements M2.M3.I1 { 62 exports.M2 = void 0; 91 var M2; 92 (function (M2) { argument 108 })(M2 = exports.M2 || (exports.M2 = {}));
|
D | externalModuleResolution.js | 10 module M2 { 13 export = M2 21 var M2; variable 22 (function (M2) { argument 23 M2.Y = 1; 24 })(M2 || (M2 = {})); 25 module.exports = M2;
|
D | externalModuleResolution2.js | 4 module M2 { 7 export = M2 22 var M2; variable 23 (function (M2) { argument 24 M2.X = 1; 25 })(M2 || (M2 = {})); 26 module.exports = M2;
|
D | mergeThreeInterfaces2.types | 5 module M2 { 6 >M2 : typeof M2 29 module M2 { 30 >M2 : typeof M2 65 module M2 { 66 >M2 : typeof M2 93 module M2 { 94 >M2 : typeof M2 127 module M2 { 128 >M2 : typeof M2
|
D | invalidInstantiatedModule.js | 7 module M2 { 12 var m = M2; 29 var M2; variable 30 (function (M2) { argument 31 M2.Point = 1; 32 })(M2 || (M2 = {})); 33 var m = M2;
|