/third_party/typescript/tests/baselines/reference/ |
D | stringLiteralTypesWithVariousOperators01.types | 6 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 …]
|
D | stringLiteralTypesWithVariousOperators02.types | 6 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 …]
|
D | extendPrivateConstructorClass.types | 5 class XYZ { 6 >XYZ : XYZ 12 class C extends abc.XYZ { 14 >abc.XYZ : abc.XYZ 16 >XYZ : typeof abc.XYZ
|
D | extendPrivateConstructorClass.symbols | 5 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))
|
D | moduleImport.types | 7 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
|
D | moduleImport.symbols | 7 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))
|
D | extendPrivateConstructorClass.errors.txt | 1 …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.
|
D | moduleImport.js | 3 import XYZ = X.Y.Z; 5 if (x>0) XYZ.pong (x-1); 23 var XYZ = X.Y.Z; 26 XYZ.pong(x - 1);
|
D | stringLiteralTypesWithVariousOperators02.errors.txt | 10 …367: This condition will always return 'false' since the types '"ABC"' and '"XYZ"' have no overlap. 11 …2367: This condition will always return 'true' since 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 condition will always return 'false' since the types '"ABC"' and '"XYZ"' hav… 53 !!! error TS2367: This condition will always return 'true' since the types '"ABC"' and '"XYZ"' have…
|
D | extendPrivateConstructorClass.js | 3 class XYZ { class 8 class C extends abc.XYZ { 34 }(abc.XYZ));
|
D | stringLiteralTypesWithVariousOperators02.symbols | 5 let xyz: "XYZ" = "XYZ"; 8 let abcOrXyz: "ABC" | "XYZ" = abc || xyz; 13 let abcOrXyzOrNumber: "ABC" | "XYZ" | number = abcOrXyz || 100;
|
D | moduleImport.errors.txt | 7 import XYZ = X.Y.Z; 13 if (x>0) XYZ.pong (x-1);
|
D | stringLiteralTypesWithVariousOperators01.symbols | 5 let xyz: "XYZ" = "XYZ"; 8 let abcOrXyz: "ABC" | "XYZ" = abc || xyz; 13 let abcOrXyzOrNumber: "ABC" | "XYZ" | number = abcOrXyz || 100;
|
/third_party/libpng/ |
D | png.c | 1233 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 …]
|
/third_party/skia/third_party/externals/libpng/ |
D | png.c | 1233 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 …]
|
/third_party/flutter/skia/third_party/externals/libpng/ |
D | png.c | 1233 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 …]
|
/third_party/python/Lib/test/test_email/data/ |
D | msg_34.txt | 3 Content-Type: multipart/digest; boundary=XYZ 5 --XYZ 12 --XYZ 19 --XYZ--
|
/third_party/boost/libs/qvm/test/ |
D | swizzle3_test.cpp | 86 test_qvm::vector<V2,3> v2=XYZ(v1); in main() 87 XYZ(v1) *= 2; in main() 89 test_qvm::vector<V2,3> v3=XYZ(v1); in main() 93 test_qvm::vector<V2,3> v2=XYZ(v1); in main() 95 XYZ(v3)=XYZ(v2); in main()
|
/third_party/skia/site/docs/user/ |
D | color.md | 13 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/pcre2/pcre2/testdata/ |
D | testinput7 | 185 \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 …]
|
D | testinput4 | 134 \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 …]
|
D | testoutput4 | 249 \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 …]
|
/third_party/typescript/tests/cases/compiler/ |
D | extendPrivateConstructorClass.ts | 2 class XYZ { class 7 class C extends abc.XYZ {
|
D | moduleImport.ts | 2 import XYZ = X.Y.Z; 4 if (x>0) XYZ.pong (x-1);
|
/third_party/boost/libs/numeric/odeint/doc/ |
D | getting_started.qbk | 68 * `#include <boost/numeric/odeint/stepper/XYZ.hpp>` - the include path for all steppers, XYZ is a p… 69 * `#include <boost/numeric/odeint/algebra/XYZ.hpp>` - all algebras. 70 * `#include <boost/numeric/odeint/util/XYZ.hpp>` - the utility functions like `is_resizeable`, `sam… 71 * `#include <boost/numeric/odeint/integrate/XYZ.hpp>` - the integrate routines. 72 * `#include <boost/numeric/odeint/iterator/XYZ.hpp>` - the range and iterator functions. 73 * `#include <boost/numeric/odeint/external/XYZ.hpp>` - any binders to external libraries.
|