/third_party/openssl/test/recipes/10-test_bn_data/ |
D | bnmul.txt | 321 # These test vectors satisfy A * B = Product. 323 Title = Product tests 325 Product = 5befab3320f8f90542f3120235abd926aac3805a19e343f690 329 Product = -ab1ce167f4b2945c55ae3f87df50ad07d4be87cf9f8aa07b0c 333 Product = -c2606cd48e6b075c8da79eb4668e7157f1f175c2860fd4c475 337 Product = aa6805b5408aff7f914472756da07830dcad902834dbdd6944 341 Product = 58ca2569173389df29b5ce4b784086055dee821a7243db7210 345 Product = -a043d31dfce8bd01724d31c863d0a64f1bf013509d77737c42 349 Product = -b5d6a45ffce851b201239d938ba551bab7dcb59fc11fc35fce 353 Product = 6f2fde7d1a18625d727c6345ed85e597d546d9228bf7f0564a [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | jsdocTypedefTagServices.baseline.jsonc | 4 // * @typedef [|Product|] 8 // * @type {/*FIND ALL REFS*/[|Product|]} 19 "name": "type Product = {\n title: string;\n}", 34 "text": "Product", 123 // * @typedef /*FIND ALL REFS*/[|Product|] 127 // * @type {[|Product|]} 138 "name": "type Product = {\n title: string;\n}", 153 "text": "Product",
|
D | recursiveIntersectionTypes.errors.txt | 1 ….ts(19,1): error TS2322: Type 'LinkedList<Entity>' is not assignable to type 'LinkedList<Product>'. 2 Property 'price' is missing in type 'LinkedList<Entity>' but required in type 'Product'. 12 interface Product extends Entity { 22 var productList: LinkedList<Product>; 26 !!! error TS2322: Type 'LinkedList<Entity>' is not assignable to type 'LinkedList<Product>'. 27 … TS2322: Property 'price' is missing in type 'LinkedList<Entity>' but required in type 'Product'.
|
D | recursiveIntersectionTypes.types | 11 interface Product extends Entity { 55 var productList: LinkedList<Product>; 56 >productList : LinkedList<Product> 59 >entityList = productList : LinkedList<Product> 61 >productList : LinkedList<Product> 65 >productList : LinkedList<Product>
|
D | typeAnnotationBestCommonTypeInArrayLiteral.types | 23 …oductName", "type": "default", "link": "", "text": "Product Name" }] : ({ … 44 >{ "id": "productName", "type": "default", "link": "", "text": "Product… 58 "text": "Product Name" 60 >"Product Name" : "Product Name"
|
D | recursiveIntersectionTypes.symbols | 17 interface Product extends Entity { 18 >Product : Symbol(Product, Decl(recursiveIntersectionTypes.ts, 4, 1)) 22 >price : Symbol(Product.price, Decl(recursiveIntersectionTypes.ts, 6, 34)) 66 var productList: LinkedList<Product>; 69 >Product : Symbol(Product, Decl(recursiveIntersectionTypes.ts, 4, 1))
|
D | conditionalTypes2.types | 374 type Product<A extends Union, B> = { f1: A, f2: B}; 375 >Product : Product<A, B> 379 type ProductUnion = Product<'a', 0> | Product<'b', 1>; 380 >ProductUnion : Product<"a", 0> | Product<"b", 1> 406 // {a: Product<'b', 1>; b: Product<'a', 0>} 408 >ProductComplement : { b: Product<"a", 0>; a: Product<"b", 1>; } 415 >PCA : Product<"b", 1> 418 >PCB : Product<"a", 0> 420 // {a: Product<'a', 0>; b: Product<'b', 1>} 422 >ProductComplementComplement : { b: Product<"b", 1>; a: Product<"a", 0>; } [all …]
|
D | recursiveIntersectionTypes.js | 8 interface Product extends Entity { 18 var productList: LinkedList<Product>;
|
D | recursiveMappedTypes.types | 73 interface Product { 78 declare var product: Transform<Product>; 79 >product : Transform<Product> 83 >product : Transform<Product>
|
D | recursiveMappedTypes.symbols | 119 interface Product { 120 >Product : Symbol(Product, Decl(recursiveMappedTypes.ts, 45, 1)) 123 >users : Symbol(Product.users, Decl(recursiveMappedTypes.ts, 47, 19)) 128 declare var product: Transform<Product>; 131 >Product : Symbol(Product, Decl(recursiveMappedTypes.ts, 45, 1))
|
D | conditionalTypes2.js | 161 type Product<A extends Union, B> = { f1: A, f2: B}; 162 type ProductUnion = Product<'a', 0> | Product<'b', 1>; 424 type Product<A extends Union, B> = { 428 type ProductUnion = Product<'a', 0> | Product<'b', 1>;
|
D | recursiveMappedTypes.js | 49 interface Product { 53 declare var product: Transform<Product>;
|
D | conditionalTypes2.symbols | 587 type Product<A extends Union, B> = { f1: A, f2: B}; 588 >Product : Symbol(Product, Decl(conditionalTypes2.ts, 158, 23)) 597 type ProductUnion = Product<'a', 0> | Product<'b', 1>; 599 >Product : Symbol(Product, Decl(conditionalTypes2.ts, 158, 23)) 600 >Product : Symbol(Product, Decl(conditionalTypes2.ts, 158, 23)) 644 // {a: Product<'b', 1>; b: Product<'a', 0>} 665 // {a: Product<'a', 0>; b: Product<'b', 1>}
|
D | conditionalTypes2.errors.txt | 248 type Product<A extends Union, B> = { f1: A, f2: B}; 249 type ProductUnion = Product<'a', 0> | Product<'b', 1>; 265 // {a: Product<'b', 1>; b: Product<'a', 0>} 272 // {a: Product<'a', 0>; b: Product<'b', 1>}
|
D | recursiveMappedTypes.errors.txt | 75 interface Product { 79 declare var product: Transform<Product>;
|
D | typeAnnotationBestCommonTypeInArrayLiteral.symbols | 49 "text": "Product Name"
|
/third_party/typescript/tests/arkTSTest/testcase/arkts-no-ctor-signatures-funcs/ |
D | arkts-no-ctor-signatures-funcs-5-ok.ets | 17 class Product { 27 type ProductCtor = (name: string, price: number) => Product; 29 function createProduct(Ctor: ProductCtor, name: string, price: number): Product { 33 const ProductCreator: ProductCtor = (name: string, price: number): Product => { 34 return new Product(name, price);
|
D | arkts-no-ctor-signatures-funcs-5-error.ets | 17 class Product { 27 type ProductCtor = new (name: string, price: number) => Product; 29 function createProduct(Ctor: ProductCtor, name: string, price: number): Product { 33 const product = createProduct(Product, "Phone", 999);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | CheckedArithmetic.h | 76 if (auto Product = checkedMul(A, B)) in checkedMulAdd() local 77 return checkedAdd(*Product, C); in checkedMulAdd() 105 if (auto Product = checkedMulUnsigned(A, B)) in checkedMulAddUnsigned() local 106 return checkedAddUnsigned(*Product, C); in checkedMulAddUnsigned()
|
/third_party/typescript/tests/cases/conformance/types/intersection/ |
D | recursiveIntersectionTypes.ts | 7 interface Product extends Entity { interface 17 var productList: LinkedList<Product>;
|
/third_party/zlib/qnx/ |
D | package.qpg | 118 <QPM:Product>zlib</QPM:Product> 132 <QPM:Product>zlib-dev</QPM:Product>
|
/third_party/typescript/tests/cases/conformance/types/mapped/ |
D | recursiveMappedTypes.ts | 50 interface Product { interface 54 declare var product: Transform<Product>;
|
/third_party/typescript/tests/cases/conformance/types/conditional/ |
D | conditionalTypes2.ts | 163 type Product<A extends Union, B> = { f1: A, f2: B}; alias 164 type ProductUnion = Product<'a', 0> | Product<'b', 1>;
|
/third_party/python/Lib/test/ |
D | test_asdl_parser.py | 58 self.assertIsInstance(self.types['withitem'], self.asdl.Product) 59 self.assertIsInstance(self.types['alias'], self.asdl.Product)
|
/third_party/mesa3d/src/panfrost/perf/ |
D | pan_gen_perf.py | 76 class Product: class 101 prods.append(Product(xml_file))
|