Home
last modified time | relevance | path

Searched refs:XYZ (Results 1 – 25 of 92) sorted by relevance

1234

/third_party/typescript/tests/baselines/reference/
DstringLiteralTypesWithVariousOperators01.types6 let xyz: "XYZ" = "XYZ";
7 >xyz : "XYZ"
8 >"XYZ" : "XYZ"
10 let abcOrXyz: "ABC" | "XYZ" = abc || xyz;
11 >abcOrXyz : "ABC" | "XYZ"
12 >abc || xyz : "ABC" | "XYZ"
14 >xyz : "XYZ"
16 let abcOrXyzOrNumber: "ABC" | "XYZ" | number = abcOrXyz || 100;
17 >abcOrXyzOrNumber : number | "ABC" | "XYZ"
18 >abcOrXyz || 100 : "ABC" | "XYZ" | 100
[all …]
DstringLiteralTypesWithVariousOperators02.types6 let xyz: "XYZ" = "XYZ";
7 >xyz : "XYZ"
8 >"XYZ" : "XYZ"
10 let abcOrXyz: "ABC" | "XYZ" = abc || xyz;
11 >abcOrXyz : "ABC" | "XYZ"
12 >abc || xyz : "ABC" | "XYZ"
14 >xyz : "XYZ"
16 let abcOrXyzOrNumber: "ABC" | "XYZ" | number = abcOrXyz || 100;
17 >abcOrXyzOrNumber : number | "ABC" | "XYZ"
18 >abcOrXyz || 100 : "ABC" | "XYZ" | 100
[all …]
DextendPrivateConstructorClass.types5 class XYZ {
6 >XYZ : XYZ
12 class C extends abc.XYZ {
14 >abc.XYZ : abc.XYZ
16 >XYZ : typeof abc.XYZ
DextendPrivateConstructorClass.symbols5 class XYZ {
6 >XYZ : Symbol(XYZ, Decl(extendPrivateConstructorClass.ts, 0, 23))
12 class C extends abc.XYZ {
14 >abc.XYZ : Symbol(abc.XYZ, Decl(extendPrivateConstructorClass.ts, 0, 23))
16 >XYZ : Symbol(abc.XYZ, Decl(extendPrivateConstructorClass.ts, 0, 23))
DmoduleImport.types7 import XYZ = X.Y.Z;
8 >XYZ : any
17 if (x>0) XYZ.pong (x-1);
21 >XYZ.pong (x-1) : any
22 >XYZ.pong : any
23 >XYZ : any
DmoduleImport.symbols7 import XYZ = X.Y.Z;
8 >XYZ : Symbol(XYZ, Decl(moduleImport.ts, 0, 14))
15 if (x>0) XYZ.pong (x-1);
17 >XYZ : Symbol(XYZ, Decl(moduleImport.ts, 0, 14))
DextendPrivateConstructorClass.errors.txt1 …PrivateConstructorClass.ts(7,17): error TS2675: Cannot extend a class 'abc.XYZ'. Class constructor…
6 class XYZ {
11 class C extends abc.XYZ {
13 !!! error TS2675: Cannot extend a class 'abc.XYZ'. Class constructor is marked as private.
DstringLiteralTypesWithVariousOperators02.errors.txt10 … This comparison appears to be unintentional because the types '"ABC"' and '"XYZ"' have no overlap.
11 … This comparison appears to be unintentional because the types '"ABC"' and '"XYZ"' have no overlap.
16 let xyz: "XYZ" = "XYZ";
17 let abcOrXyz: "ABC" | "XYZ" = abc || xyz;
18 let abcOrXyzOrNumber: "ABC" | "XYZ" | number = abcOrXyz || 100;
50 !!! error TS2367: This comparison appears to be unintentional because the types '"ABC"' and '"XYZ"'…
53 !!! error TS2367: This comparison appears to be unintentional because the types '"ABC"' and '"XYZ"'…
DmoduleImport.js3 import XYZ = X.Y.Z;
5 if (x>0) XYZ.pong (x-1);
23 var XYZ = X.Y.Z;
26 XYZ.pong(x - 1);
DextendPrivateConstructorClass.js3 class XYZ { class
8 class C extends abc.XYZ {
34 }(abc.XYZ));
DstringLiteralTypesWithVariousOperators02.symbols5 let xyz: "XYZ" = "XYZ";
8 let abcOrXyz: "ABC" | "XYZ" = abc || xyz;
13 let abcOrXyzOrNumber: "ABC" | "XYZ" | number = abcOrXyz || 100;
DstringLiteralTypesWithVariousOperators01.symbols5 let xyz: "XYZ" = "XYZ";
8 let abcOrXyz: "ABC" | "XYZ" = abc || xyz;
13 let abcOrXyzOrNumber: "ABC" | "XYZ" | number = abcOrXyz || 100;
DmoduleImport.errors.txt7 import XYZ = X.Y.Z;
13 if (x>0) XYZ.pong (x-1);
/third_party/skia/third_party/externals/libpng/
Dpng.c1233 png_xy_from_XYZ(png_xy *xy, const png_XYZ *XYZ)
1237 d = XYZ->red_X + XYZ->red_Y + XYZ->red_Z;
1238 if (png_muldiv(&xy->redx, XYZ->red_X, PNG_FP_1, d) == 0)
1240 if (png_muldiv(&xy->redy, XYZ->red_Y, PNG_FP_1, d) == 0)
1243 whiteX = XYZ->red_X;
1244 whiteY = XYZ->red_Y;
1246 d = XYZ->green_X + XYZ->green_Y + XYZ->green_Z;
1247 if (png_muldiv(&xy->greenx, XYZ->green_X, PNG_FP_1, d) == 0)
1249 if (png_muldiv(&xy->greeny, XYZ->green_Y, PNG_FP_1, d) == 0)
1252 whiteX += XYZ->green_X;
[all …]
Dpngset.c76 png_XYZ XYZ; in png_set_cHRM_XYZ_fixed() local
83 XYZ.red_X = int_red_X; in png_set_cHRM_XYZ_fixed()
84 XYZ.red_Y = int_red_Y; in png_set_cHRM_XYZ_fixed()
85 XYZ.red_Z = int_red_Z; in png_set_cHRM_XYZ_fixed()
86 XYZ.green_X = int_green_X; in png_set_cHRM_XYZ_fixed()
87 XYZ.green_Y = int_green_Y; in png_set_cHRM_XYZ_fixed()
88 XYZ.green_Z = int_green_Z; in png_set_cHRM_XYZ_fixed()
89 XYZ.blue_X = int_blue_X; in png_set_cHRM_XYZ_fixed()
90 XYZ.blue_Y = int_blue_Y; in png_set_cHRM_XYZ_fixed()
91 XYZ.blue_Z = int_blue_Z; in png_set_cHRM_XYZ_fixed()
[all …]
/third_party/python/Lib/test/test_email/data/
Dmsg_34.txt3 Content-Type: multipart/digest; boundary=XYZ
5 --XYZ
12 --XYZ
19 --XYZ--
/third_party/skia/site/docs/user/
Dcolor.md13 colors from that color space to a common "connection" color space called XYZ
15 XYZ D50 space back to the original color space. XYZ D50 is a color space
16 represented in three dimensions like RGB, but the XYZ parts are not RGB-like at
23 source colors to that XYZ D50 space, then three symmetric steps connecting back
24 from XYZ D50 to the destination color space. Some of these steps can
35 3. convert those unpremultiplied, linear source colors to XYZ D50 gamut by
37 4. convert those XYZ D50 colors to the destination gamut by multiplying by a 3x3 matrix
/third_party/ffmpeg/libavfilter/
Dfflcms2.c198 static av_always_inline void XYZ_xy(cmsCIEXYZ XYZ, AVCIExy *xy) in XYZ_xy() argument
200 double k = 1.0 / (XYZ.X + XYZ.Y + XYZ.Z); in XYZ_xy()
201 xy->x = av_d2q(k * XYZ.X, 100000); in XYZ_xy()
202 xy->y = av_d2q(k * XYZ.Y, 100000); in XYZ_xy()
/third_party/pcre2/pcre2/testdata/
Dtestinput7185 \x{256}XYZ
187 XYZ
495 XYZ
498 XYZ
1096 /(?<=A\p{Nd})XYZ/utf
1102 XYZ
1104 /(?<!\pL)XYZ/utf
1105 1XYZ
1106 AB=XYZ..
1107 XYZ
[all …]
Dtestinput4134 \x{256}XYZ
136 XYZ
444 XYZ
447 XYZ
1001 /(?<=A\p{Nd})XYZ/utf
1007 XYZ
1009 /(?<!\pL)XYZ/utf
1010 1XYZ
1011 AB=XYZ..
1012 XYZ
[all …]
Dtestoutput4249 \x{256}XYZ
253 XYZ
724 XYZ
728 XYZ
1651 /(?<=A\p{Nd})XYZ/utf
1653 0: XYZ
1655 0: XYZ
1657 0: XYZ
1661 XYZ
1664 /(?<!\pL)XYZ/utf
[all …]
Dtestoutput7293 \x{256}XYZ
296 XYZ
807 XYZ
811 XYZ
1842 /(?<=A\p{Nd})XYZ/utf
1844 0: XYZ
1846 0: XYZ
1848 0: XYZ
1852 XYZ
1855 /(?<!\pL)XYZ/utf
[all …]
Dtestinput12168 AB\x{85}xxx\x{a0}XYZ
169 AB\x{a0}xxx\x{85}XYZ
437 AB\x{df00}XYZ
438 AB\x{df00}XYZ\=offset=3
/third_party/typescript/tests/cases/compiler/
DextendPrivateConstructorClass.ts2 class XYZ { class
7 class C extends abc.XYZ {
DmoduleImport.ts2 import XYZ = X.Y.Z;
4 if (x>0) XYZ.pong (x-1);

1234