/third_party/typescript/tests/baselines/reference/ |
D | thisInConstructorParameter2.js | 6 constructor(public z = this, zz = this, zzz = (p = this) => this) { argument 10 foo(zz = this) { zz.x; } argument 11 static bar(zz = this) { zz.y; } argument 16 function P(z, zz, zzz) { argument 19 if (zz === void 0) { zz = this; } 31 P.prototype.foo = function (zz) { argument 32 if (zz === void 0) { zz = this; } 33 zz.x; 35 P.bar = function (zz) { argument 36 if (zz === void 0) { zz = this; } [all …]
|
D | thisInConstructorParameter2.types | 13 constructor(public z = this, zz = this, zzz = (p = this) => this) { 16 >zz : this 33 foo(zz = this) { zz.x; } 34 >foo : (zz?: this) => void 35 >zz : this 37 >zz.x : this 38 >zz : this 41 static bar(zz = this) { zz.y; } 42 >bar : (zz?: typeof P) => void 43 >zz : typeof P [all …]
|
D | thisInConstructorParameter2.symbols | 13 constructor(public z = this, zz = this, zzz = (p = this) => this) { 16 >zz : Symbol(zz, Decl(thisInConstructorParameter2.ts, 4, 32)) 30 foo(zz = this) { zz.x; } 32 >zz : Symbol(zz, Decl(thisInConstructorParameter2.ts, 8, 8)) 34 >zz.x : Symbol(P.x, Decl(thisInConstructorParameter2.ts, 0, 9)) 35 >zz : Symbol(zz, Decl(thisInConstructorParameter2.ts, 8, 8)) 38 static bar(zz = this) { zz.y; } 40 >zz : Symbol(zz, Decl(thisInConstructorParameter2.ts, 9, 15)) 42 >zz.y : Symbol(P.y, Decl(thisInConstructorParameter2.ts, 1, 13)) 43 >zz : Symbol(zz, Decl(thisInConstructorParameter2.ts, 9, 15))
|
D | superAccess2.js | 12 constructor(public z = super, zz = super, zzz = () => super) { argument 16 foo(zz = super) { argument 21 static bar(zz = super) { argument 53 function Q(z, zz, zzz) { argument 55 if (zz === void 0) { zz = _super.prototype.; } 62 Q.prototype.foo = function (zz) { argument 63 if (zz === void 0) { zz = _super.prototype.; } 67 Q.bar = function (zz) { argument 68 if (zz === void 0) { zz = _super.; }
|
D | typeParametersShouldNotBeEqual2.types | 8 var zz: Object; 9 >zz : Object 41 x = zz; // Error 42 >x = zz : Object 44 >zz : Object 46 zz = x; // Ok 47 >zz = x : T 48 >zz : Object
|
D | typeParametersShouldNotBeEqual2.js | 3 var zz: Object; variable 10 x = zz; // Error 11 zz = x; // Ok 17 var zz; variable 24 x = zz; // Error 25 zz = x; // Ok
|
D | superAccess2.types | 29 constructor(public z = super, zz = super, zzz = () => super) { 34 >zz : any 49 foo(zz = super) { 50 >foo : (zz?: any) => void 51 >zz : any 69 static bar(zz = super) { 70 >bar : (zz?: any) => void 71 >zz : any
|
D | inferenceShouldFailOnEvolvingArrays.js | 17 let zz = []; variable 18 zz.push(logLength(42)); // no error; T is inferred as `any` 19 zz = logFirstLength([42]); // no error; T is inferred as `any[]` 37 var zz = []; variable 38 zz.push(logLength(42)); // no error; T is inferred as `any` 39 zz = logFirstLength([42]); // no error; T is inferred as `any[]`
|
D | superAccess2.symbols | 24 constructor(public z = super, zz = super, zzz = () => super) { 26 >zz : Symbol(zz, Decl(superAccess2.ts, 10, 33)) 34 foo(zz = super) { 36 >zz : Symbol(zz, Decl(superAccess2.ts, 14, 8)) 48 static bar(zz = super) { 50 >zz : Symbol(zz, Decl(superAccess2.ts, 19, 15))
|
D | typeParametersShouldNotBeEqual2.symbols | 16 var zz: Object; 17 >zz : Symbol(zz, Decl(typeParametersShouldNotBeEqual2.ts, 1, 7)) 44 x = zz; // Error 46 >zz : Symbol(zz, Decl(typeParametersShouldNotBeEqual2.ts, 1, 7)) 48 zz = x; // Ok 49 >zz : Symbol(zz, Decl(typeParametersShouldNotBeEqual2.ts, 1, 7))
|
D | exportAssignClassAndModule.symbols | 11 var zz: Foo; 12 >zz : Symbol(zz, Decl(exportAssignClassAndModule_1.ts, 4, 3)) 15 zz.x; 16 >zz.x : Symbol(Foo.x, Decl(exportAssignClassAndModule_0.ts, 0, 11)) 17 >zz : Symbol(zz, Decl(exportAssignClassAndModule_1.ts, 4, 3))
|
D | exportAssignClassAndModule.types | 10 var zz: Foo; 11 >zz : Foo 13 zz.x; 14 >zz.x : Foo.Bar 15 >zz : Foo
|
D | inferenceShouldFailOnEvolvingArrays.types | 59 let zz = []; 60 >zz : any[] 63 zz.push(logLength(42)); // no error; T is inferred as `any` 64 >zz.push(logLength(42)) : number 65 >zz.push : (...items: any[]) => number 66 >zz : any[] 72 zz = logFirstLength([42]); // no error; T is inferred as `any[]` 73 >zz = logFirstLength([42]) : string[] 74 >zz : any[]
|
D | inferenceShouldFailOnEvolvingArrays.symbols | 61 let zz = []; 62 >zz : Symbol(zz, Decl(inferenceShouldFailOnEvolvingArrays.ts, 15, 3)) 64 zz.push(logLength(42)); // no error; T is inferred as `any` 65 >zz.push : Symbol(Array.push, Decl(lib.es5.d.ts, --, --)) 66 >zz : Symbol(zz, Decl(inferenceShouldFailOnEvolvingArrays.ts, 15, 3)) 70 zz = logFirstLength([42]); // no error; T is inferred as `any[]` 71 >zz : Symbol(zz, Decl(inferenceShouldFailOnEvolvingArrays.ts, 15, 3))
|
D | exportAssignClassAndModule.js | 18 var zz: Foo; variable 19 zz.x; 33 var zz; variable 34 zz.x;
|
/third_party/python/Lib/idlelib/idle_test/ |
D | test_zzdummy.py | 67 zz = self.zz = zzdummy.ZzDummy(self.editor) 72 del self.zz 86 zz = self.zz 87 self.assertEqual(zz.editwin, self.editor) 88 self.assertEqual(zz.text, self.editor.text) 91 self.assertEqual(self.zz.ztext, '# ignore #') 94 self.assertEqual(self.zz.ztext, 'spam') 98 zz = self.zz 99 text = zz.text 100 eq(self.zz.ztext, '# ignore #') [all …]
|
/third_party/openh264/res/ |
D | Cisco_Absolute_Power_1280x720_30fps.yuv | 770 …zz{{zz{{~|{{|zyz}}~}{{}|}~}}~||{||}|}~}~~}~~|z~�}||{}|||}�~~��~}~����~��~~��~~���~����… 1545 …zz{{zyz{{{zzyz|~}||{~~{{}~~~}}{{zz{|}}|{|zyz|z{||||~{|}|}}~~}~}}~}|}~��~���~~~~~~�~~~~~}}��… 2311 …zz{|{|~~~}|}||{{{{|}~|{}~|}|||||||}}�}}}~}}}}~�~||~�~~�~~}�~~�����������}��~~����… 3097 …zz{|}|z{|zxz{{{||{xy{|~~{{{~{|}~|z{|||}}zzy|{{|}{{||{|}|{{z{~}}{}|}~~}~~|~}}~~�|�~~}~�}~�… 3873 …zz{z{||{||{z~~}|zz{||}|}~||}|||z{~~}zz{z|~}}~��~z~��~~}�~{{{}~~~~}��~~~~~~}~��~������~…
|
/third_party/boost/tools/boost_install/test/iostreams/bzip2-1.0.6/ |
D | huffman.c | 35 Int32 zz, tmp; \ 36 zz = z; tmp = heap[zz]; \ 37 while (weight[tmp] < weight[heap[zz >> 1]]) { \ 38 heap[zz] = heap[zz >> 1]; \ 39 zz >>= 1; \ 41 heap[zz] = tmp; \ 46 Int32 zz, yy, tmp; \ 47 zz = z; tmp = heap[zz]; \ 49 yy = zz << 1; \ 55 heap[zz] = heap[yy]; \ [all …]
|
/third_party/bzip2/ |
D | huffman.c | 35 Int32 zz, tmp; \ 36 zz = z; tmp = heap[zz]; \ 37 while (weight[tmp] < weight[heap[zz >> 1]]) { \ 38 heap[zz] = heap[zz >> 1]; \ 39 zz >>= 1; \ 41 heap[zz] = tmp; \ 46 Int32 zz, yy, tmp; \ 47 zz = z; tmp = heap[zz]; \ 49 yy = zz << 1; \ 55 heap[zz] = heap[yy]; \ [all …]
|
/third_party/boost/tools/boost_install/test/iostreams/bzip2-1.0.8/ |
D | huffman.c | 35 Int32 zz, tmp; \ 36 zz = z; tmp = heap[zz]; \ 37 while (weight[tmp] < weight[heap[zz >> 1]]) { \ 38 heap[zz] = heap[zz >> 1]; \ 39 zz >>= 1; \ 41 heap[zz] = tmp; \ 46 Int32 zz, yy, tmp; \ 47 zz = z; tmp = heap[zz]; \ 49 yy = zz << 1; \ 55 heap[zz] = heap[yy]; \ [all …]
|
/third_party/libxml2/result/errors/ |
D | 759573-2.xml.err | 2 %zz; 8 %zz; 14 %zz; 21 %xx;�ggKENSMYNT#MENTDŴzz;'> 28 %xx;�ggKENSMYNT#MENTDŴzz;'> 31 %xx;�ggKENSMYNT#MENTDŴzz;'> 34 %xx;�ggKENSMYNT#MENTDŴzz;'>
|
D | 759573-2.xml.ent | 2 %zz; 8 %zz; 14 %zz; 21 %xx;�ggKENSMYNT#MENTDŴzz;'> 28 %xx;�ggKENSMYNT#MENTDŴzz;'> 31 %xx;�ggKENSMYNT#MENTDŴzz;'> 34 %xx;�ggKENSMYNT#MENTDŴzz;'>
|
/third_party/typescript/tests/cases/compiler/ |
D | thisInConstructorParameter2.ts | 5 constructor(public z = this, zz = this, zzz = (p = this) => this) { 9 foo(zz = this) { zz.x; } 10 static bar(zz = this) { zz.y; }
|
/third_party/flutter/skia/src/core/ |
D | SkPoint3.cpp | 33 double zz = z; in Length() local 34 return (float)sqrt(xx * xx + yy * yy + zz * zz); in Length() 63 double zz = fZ; in normalize() local 64 invScale = xx * xx + yy * yy + zz * zz; in normalize()
|
/third_party/skia/src/core/ |
D | SkPoint3.cpp | 33 double zz = z; in Length() local 34 return (float)sqrt(xx * xx + yy * yy + zz * zz); in Length() 63 double zz = fZ; in normalize() local 64 invScale = xx * xx + yy * yy + zz * zz; in normalize()
|