/third_party/libphonenumber/resources/carrier/en/ |
D | 65.txt | 15 # Liberty wireless (Circle.Life) and Geenet signed an agreement with M1 Limited 24 658022|M1 25 658023|M1 27 658025|M1 28 658026|M1 37 65804|M1 44 65810|M1 47 65817|M1 50 658188|M1 51 65819|M1 [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | circularReference.types | 5 export module M1 { 6 >M1 : typeof M1 11 m1: foo1.M1.C1; 12 >m1 : foo1.M1.C1 14 >M1 : any 20 this.m1 = new foo1.M1.C1(); 21 >this.m1 = new foo1.M1.C1() : foo1.M1.C1 22 >this.m1 : foo1.M1.C1 24 >m1 : foo1.M1.C1 25 >new foo1.M1.C1() : foo1.M1.C1 [all …]
|
D | mixinClassesMembers.types | 21 declare class M1 { 22 >M1 : M1 47 declare const Mixed1: typeof M1 & typeof C1; 48 >Mixed1 : typeof M1 & typeof C1 49 >M1 : typeof M1 52 declare const Mixed2: typeof C1 & typeof M1; 53 >Mixed2 : typeof C1 & typeof M1 55 >M1 : typeof M1 57 declare const Mixed3: typeof M2 & typeof M1 & typeof C1; 58 >Mixed3 : typeof M2 & typeof M1 & typeof C1 [all …]
|
D | circularReference.js | 5 export module M1 { 7 m1: foo2.M1.C1; 10 this.m1 = new foo2.M1.C1(); 19 export module M1 { 21 m1: foo1.M1.C1; 24 this.m1 = new foo1.M1.C1(); 28 var tmp = new M1.C1(); 39 exports.M1 = void 0; 41 var M1; variable 42 (function (M1) { argument [all …]
|
D | circularReference.symbols | 5 export module M1 { 6 >M1 : Symbol(M1, Decl(foo2.ts, 0, 32)) 11 m1: foo1.M1.C1; 14 >M1 : Symbol(foo1.M1, Decl(foo1.ts, 0, 32)) 15 >C1 : Symbol(foo1.M1.C1, Decl(foo1.ts, 1, 18)) 21 this.m1 = new foo1.M1.C1(); 25 >foo1.M1.C1 : Symbol(foo1.M1.C1, Decl(foo1.ts, 1, 18)) 26 >foo1.M1 : Symbol(foo1.M1, Decl(foo1.ts, 0, 32)) 28 >M1 : Symbol(foo1.M1, Decl(foo1.ts, 0, 32)) 29 >C1 : Symbol(foo1.M1.C1, Decl(foo1.ts, 1, 18)) [all …]
|
D | varNameConflictsWithImportInDifferentPartOfModule.js | 2 module M1 { 6 module M1 { 7 export import q = M1.s; // Should be an error but isn't 11 var M1; variable 12 (function (M1) { argument 13 M1.q = 5; 14 M1.s = ''; 15 })(M1 || (M1 = {})); 16 (function (M1) { argument 17 M1.q = M1.s; // Should be an error but isn't [all …]
|
D | typeValueConflict2.symbols | 2 module M1 { 3 >M1 : Symbol(M1, Decl(typeValueConflict2.ts, 0, 0)) 18 var M1 = 0; 19 >M1 : Symbol(M1, Decl(typeValueConflict2.ts, 7, 7)) 21 // Should error. M1 should bind to the variable, not to the module. 22 class B extends M1.A<string> { 24 >M1.A : Symbol(M1.A, Decl(typeValueConflict2.ts, 0, 11)) 25 >M1 : Symbol(M1, Decl(typeValueConflict2.ts, 0, 0)) 26 >A : Symbol(M1.A, Decl(typeValueConflict2.ts, 0, 11)) 33 class B extends M1.A<string> { [all …]
|
D | typeValueConflict2.types | 2 module M1 { 3 >M1 : typeof M1 16 var M1 = 0; 17 >M1 : number 20 // Should error. M1 should bind to the variable, not to the module. 21 class B extends M1.A<string> { 23 >M1.A : any 24 >M1 : number 32 class B extends M1.A<string> { 34 >M1.A : M1.A<string> [all …]
|
D | enumMergingErrors.js | 20 module M1 { 23 module M1 { 26 module M1 { 91 var M1; variable 92 (function (M1) { argument 96 })(E1 = M1.E1 || (M1.E1 = {})); 97 })(M1 || (M1 = {})); 98 (function (M1) { argument 102 })(E1 = M1.E1 || (M1.E1 = {})); 103 })(M1 || (M1 = {})); [all …]
|
D | typeValueConflict1.symbols | 2 module M1 { 3 >M1 : Symbol(M1, Decl(typeValueConflict1.ts, 0, 0)) 12 var M1 = 0; 13 >M1 : Symbol(M1, Decl(typeValueConflict1.ts, 5, 4)) 15 // Should error. M1 should bind to the variable, not to the module. 16 class B extends M1.A { 18 >M1.A : Symbol(M1.A, Decl(typeValueConflict1.ts, 0, 11)) 19 >M1 : Symbol(M1, Decl(typeValueConflict1.ts, 0, 0)) 20 >A : Symbol(M1.A, Decl(typeValueConflict1.ts, 0, 11))
|
D | typeValueConflict2.js | 2 module M1 { 9 var M1 = 0; variable 11 class B extends M1.A<string> { 16 class B extends M1.A<string> { 37 var M1; variable 38 (function (M1) { argument 44 M1.A = A; 45 })(M1 || (M1 = {})); 48 var M1 = 0; 56 }(M1.A)); [all …]
|
D | varNameConflictsWithImportInDifferentPartOfModule.types | 2 module M1 { 3 >M1 : typeof M1 13 module M1 { 14 >M1 : typeof M1 16 export import q = M1.s; // Should be an error but isn't 18 >M1 : typeof M1
|
D | mixinClassesMembers.symbols | 21 declare class M1 { 22 >M1 : Symbol(M1, Decl(mixinClassesMembers.ts, 6, 1)) 28 >p : Symbol(M1.p, Decl(mixinClassesMembers.ts, 9, 32)) 31 >p : Symbol(M1.p, Decl(mixinClassesMembers.ts, 10, 14)) 47 declare const Mixed1: typeof M1 & typeof C1; 49 >M1 : Symbol(M1, Decl(mixinClassesMembers.ts, 6, 1)) 52 declare const Mixed2: typeof C1 & typeof M1; 55 >M1 : Symbol(M1, Decl(mixinClassesMembers.ts, 6, 1)) 57 declare const Mixed3: typeof M2 & typeof M1 & typeof C1; 60 >M1 : Symbol(M1, Decl(mixinClassesMembers.ts, 6, 1)) [all …]
|
D | typeValueConflict1.types | 2 module M1 { 3 >M1 : typeof M1 12 var M1 = 0; 13 >M1 : number 16 // Should error. M1 should bind to the variable, not to the module. 17 class B extends M1.A { 19 >M1.A : any 20 >M1 : number
|
D | typeValueConflict1.js | 2 module M1 { 7 var M1 = 0; variable 9 class B extends M1.A { 30 var M1; variable 31 (function (M1) { argument 37 M1.A = A; 38 })(M1 || (M1 = {})); 41 var M1 = 0; 49 }(M1.A));
|
D | varNameConflictsWithImportInDifferentPartOfModule.symbols | 2 module M1 { 3 >M1 : Symbol(M1, Decl(varNameConflictsWithImportInDifferentPartOfModule.ts, 0, 0), Decl(varNameConf… 11 module M1 { 12 >M1 : Symbol(M1, Decl(varNameConflictsWithImportInDifferentPartOfModule.ts, 0, 0), Decl(varNameConf… 14 export import q = M1.s; // Should be an error but isn't 16 >M1 : Symbol(M1, Decl(varNameConflictsWithImportInDifferentPartOfModule.ts, 0, 0), Decl(varNameConf…
|
/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/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/nnacl/intrinsics/sse/ |
D | WinogradTrans.c | 40 __m128 M1 = _mm_loadu_ps(M); in WinogradTransLeft() local 42 M1 = _mm_add_ps(M1, _mm_mul_ps(s0, k1)); in WinogradTransLeft() 46 M1 = _mm_add_ps(M1, _mm_mul_ps(s3, k3)); in WinogradTransLeft() 50 M1 = _mm_add_ps(M1, _mm_mul_ps(s5, k5)); in WinogradTransLeft() 54 M1 = _mm_add_ps(M1, _mm_mul_ps(s7, k7)); in WinogradTransLeft() 55 M1 = _mm_add_ps(M1, s1); in WinogradTransLeft() 56 _mm_storeu_ps(M, M1); in WinogradTransLeft() 68 __m128 M1 = _mm_loadu_ps(M); in WinogradTransLeft() local 70 M1 = _mm_add_ps(M1, _mm_mul_ps(s0, k1)); in WinogradTransLeft() 74 M1 = _mm_add_ps(M1, _mm_mul_ps(s3, k3)); in WinogradTransLeft() [all …]
|
/third_party/boost/boost/numeric/ublas/ |
D | blas.hpp | 362 template<class M1, class T, class M2, class M3> 363 M1 & tmm (M1 &m1, const T &t, const M2 &m2, const M3 &m3) in tmm() 381 template<class M1, class T, class M2, class C> 382 M1 & tsm (M1 &m1, const T &t, const M2 &m2, C) in tsm() 402 template<class M1, class T1, class T2, class M2, class M3> 403 M1 & gmm (M1 &m1, const T1 &t1, const T2 &t2, const M2 &m2, const M3 &m3) in gmm() 422 template<class M1, class T1, class T2, class M2> 423 M1 & srk (M1 &m1, const T1 &t1, const T2 &t2, const M2 &m2) in srk() 442 template<class M1, class T1, class T2, class M2> 443 M1 & hrk (M1 &m1, const T1 &t1, const T2 &t2, const M2 &m2) in hrk() [all …]
|
/third_party/harfbuzz/test/shaping/data/text-rendering-tests/tests/ |
D | GVAR-4.tests | 1 …t-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=-1.0,T1=0.0:U+1F98E:… 2 …t-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=-0.8,T1=0.1:U+1F98E:… 3 …t-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=-0.6,T1=0.2:U+1F98E:… 4 …t-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=-0.4,T1=0.3:U+1F98E:… 5 …t-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=-0.2,T1=0.4:U+1F98E:… 6 …t-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=0.0,T1=0.5:U+1F98E:[… 7 …t-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=0.2,T1=0.6:U+1F98E:[… 8 …t-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=0.4,T1=0.7:U+1F98E:[… 9 …t-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=0.6,T1=0.8:U+1F98E:[… 10 …t-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=0.8,T1=0.9:U+1F98E:[… [all …]
|
D | GVAR-5.tests | 1 …nt-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=-1.0:U+1F31D:[gid15] 2 …nt-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=-0.8:U+1F31D:[gid15] 3 …nt-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=-0.6:U+1F31D:[gid15] 4 …nt-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=-0.4:U+1F31D:[gid15] 5 …nt-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=-0.2:U+1F31D:[gid15] 6 …ont-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=0.0:U+1F31D:[gid15] 7 …ont-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=0.2:U+1F31D:[gid15] 8 …ont-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=0.4:U+1F31D:[gid15] 9 …ont-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=0.6:U+1F31D:[gid15] 10 …ont-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=0.8:U+1F31D:[gid15] [all …]
|
/third_party/flutter/skia/third_party/externals/harfbuzz/test/shaping/data/text-rendering-tests/tests/ |
D | GVAR-5.tests | 1 …nt-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=-1.0:U+1F31D:[gid15] 2 …nt-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=-0.8:U+1F31D:[gid15] 3 …nt-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=-0.6:U+1F31D:[gid15] 4 …nt-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=-0.4:U+1F31D:[gid15] 5 …nt-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=-0.2:U+1F31D:[gid15] 6 …ont-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=0.0:U+1F31D:[gid15] 7 …ont-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=0.2:U+1F31D:[gid15] 8 …ont-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=0.4:U+1F31D:[gid15] 9 …ont-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=0.6:U+1F31D:[gid15] 10 …ont-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=0.8:U+1F31D:[gid15] [all …]
|
D | GVAR-4.tests | 1 …t-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=-1.0,T1=0.0:U+1F98E:… 2 …t-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=-0.8,T1=0.1:U+1F98E:… 3 …t-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=-0.6,T1=0.2:U+1F98E:… 4 …t-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=-0.4,T1=0.3:U+1F98E:… 5 …t-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=-0.2,T1=0.4:U+1F98E:… 6 …t-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=0.0,T1=0.5:U+1F98E:[… 7 …t-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=0.2,T1=0.6:U+1F98E:[… 8 …t-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=0.4,T1=0.7:U+1F98E:[… 9 …t-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=0.6,T1=0.8:U+1F98E:[… 10 …t-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=0.8,T1=0.9:U+1F98E:[… [all …]
|
/third_party/skia/third_party/externals/harfbuzz/test/shape/data/text-rendering-tests/tests/ |
D | GVAR-4.tests | 1 …t-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=-1.0,T1=0.0;U+1F98E;… 2 …t-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=-0.8,T1=0.1;U+1F98E;… 3 …t-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=-0.6,T1=0.2;U+1F98E;… 4 …t-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=-0.4,T1=0.3;U+1F98E;… 5 …t-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=-0.2,T1=0.4;U+1F98E;… 6 …t-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=0.0,T1=0.5;U+1F98E;[… 7 …t-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=0.2,T1=0.6;U+1F98E;[… 8 …t-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=0.4,T1=0.7;U+1F98E;[… 9 …t-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=0.6,T1=0.8;U+1F98E;[… 10 …t-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=0.8,T1=0.9;U+1F98E;[… [all …]
|
D | GVAR-5.tests | 1 …nt-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=-1.0;U+1F31D;[gid15] 2 …nt-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=-0.8;U+1F31D;[gid15] 3 …nt-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=-0.6;U+1F31D;[gid15] 4 …nt-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=-0.4;U+1F31D;[gid15] 5 …nt-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=-0.2;U+1F31D;[gid15] 6 …ont-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=0.0;U+1F31D;[gid15] 7 …ont-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=0.2;U+1F31D;[gid15] 8 …ont-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=0.4;U+1F31D;[gid15] 9 …ont-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=0.6;U+1F31D;[gid15] 10 …ont-size=1000 --ned --remove-default-ignorables --font-funcs=ft --variations=M1=0.8;U+1F31D;[gid15] [all …]
|