Home
last modified time | relevance | path

Searched refs:Product (Results 1 – 25 of 105) sorted by relevance

12345

/third_party/openssl/test/recipes/10-test_bn_data/
Dbnmul.txt321 # 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/
DjsdocTypedefTagServices.baseline.jsonc4 // * @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",
DrecursiveIntersectionTypes.errors.txt1 ….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'.
DrecursiveIntersectionTypes.types11 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>
DtypeAnnotationBestCommonTypeInArrayLiteral.types23 …oductName", "type": "default", "link": "", "text": "Product Name" }] : ({ …
44 >{ "id": "productName", "type": "default", "link": "", "text": "Product
58 "text": "Product Name"
60 >"Product Name" : "Product Name"
DrecursiveIntersectionTypes.symbols17 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))
DconditionalTypes2.types374 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 …]
DrecursiveIntersectionTypes.js8 interface Product extends Entity {
18 var productList: LinkedList<Product>;
DrecursiveMappedTypes.types73 interface Product {
78 declare var product: Transform<Product>;
79 >product : Transform<Product>
83 >product : Transform<Product>
DrecursiveMappedTypes.symbols119 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))
DconditionalTypes2.js161 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>;
DrecursiveMappedTypes.js49 interface Product {
53 declare var product: Transform<Product>;
DconditionalTypes2.symbols587 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>}
DconditionalTypes2.errors.txt248 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>}
DrecursiveMappedTypes.errors.txt75 interface Product {
79 declare var product: Transform<Product>;
DtypeAnnotationBestCommonTypeInArrayLiteral.symbols49 "text": "Product Name"
/third_party/typescript/tests/arkTSTest/testcase/arkts-no-ctor-signatures-funcs/
Darkts-no-ctor-signatures-funcs-5-ok.ets17 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);
Darkts-no-ctor-signatures-funcs-5-error.ets17 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/
DCheckedArithmetic.h76 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/
DrecursiveIntersectionTypes.ts7 interface Product extends Entity { interface
17 var productList: LinkedList<Product>;
/third_party/zlib/qnx/
Dpackage.qpg118 <QPM:Product>zlib</QPM:Product>
132 <QPM:Product>zlib-dev</QPM:Product>
/third_party/typescript/tests/cases/conformance/types/mapped/
DrecursiveMappedTypes.ts50 interface Product { interface
54 declare var product: Transform<Product>;
/third_party/typescript/tests/cases/conformance/types/conditional/
DconditionalTypes2.ts163 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/
Dtest_asdl_parser.py58 self.assertIsInstance(self.types['withitem'], self.asdl.Product)
59 self.assertIsInstance(self.types['alias'], self.asdl.Product)
/third_party/mesa3d/src/panfrost/perf/
Dpan_gen_perf.py76 class Product: class
101 prods.append(Product(xml_file))

12345