/third_party/typescript/tests/baselines/reference/tsserver/resolutionCache/ |
D | relative-module-name-from-files-in-different-folders.js | 70 …=== Resolving module './module1' from '/user/username/projects/myproject/product/src/file1.ts'. ==… 72 …e / folder, candidate module location '/user/username/projects/myproject/product/src/module1', tar… 73 Info 17 [00:00:58.000] File '/user/username/projects/myproject/product/src/module1.ts' exist - us… 74 …module1' was successfully resolved to '/user/username/projects/myproject/product/src/module1.ts'. … 75 …== Resolving module '../module2' from '/user/username/projects/myproject/product/src/file1.ts'. ==… 77 …e / folder, candidate module location '/user/username/projects/myproject/product/module2', target … 78 Info 22 [00:01:03.000] File '/user/username/projects/myproject/product/module2.ts' exist - use it… 79 …module2' was successfully resolved to '/user/username/projects/myproject/product/module2.ts'. ====… 80 …== Resolving module '../module1' from '/user/username/projects/myproject/product/src/feature/file2… 82 …e / folder, candidate module location '/user/username/projects/myproject/product/src/module1', tar… [all …]
|
D | non-relative-module-name-from-inferred-project.js | 50 …solving module './feature/file2' from '/user/username/projects/myproject/product/src/file1.ts'. ==… 52 …e / folder, candidate module location '/user/username/projects/myproject/product/src/feature/file2… 53 Info 13 [00:01:00.000] File '/user/username/projects/myproject/product/src/feature/file2.ts' exis… 54 …e/file2' was successfully resolved to '/user/username/projects/myproject/product/src/feature/file2… 55 …Resolving module '../test/file4' from '/user/username/projects/myproject/product/src/file1.ts'. ==… 57 …e / folder, candidate module location '/user/username/projects/myproject/product/test/file4', targ… 58 Info 18 [00:01:05.000] File '/user/username/projects/myproject/product/test/file4.ts' exist - use… 59 …t/file4' was successfully resolved to '/user/username/projects/myproject/product/test/file4.ts'. =… 60 …lving module '../test/src/file3' from '/user/username/projects/myproject/product/src/file1.ts'. ==… 62 …e / folder, candidate module location '/user/username/projects/myproject/product/test/src/file3', … [all …]
|
D | non-relative-module-name-from-files-in-different-folders.js | 66 …===== Resolving module 'module1' from '/user/username/projects/myproject/product/src/file1.ts'. ==… 69 Info 15 [00:01:04.000] Directory '/user/username/projects/myproject/product/src/node_modules' doe… 70 Info 16 [00:01:05.000] File '/user/username/projects/myproject/product/node_modules/module1/packa… 71 Info 17 [00:01:06.000] File '/user/username/projects/myproject/product/node_modules/module1.ts' d… 72 Info 18 [00:01:07.000] File '/user/username/projects/myproject/product/node_modules/module1.tsx' … 73 Info 19 [00:01:08.000] File '/user/username/projects/myproject/product/node_modules/module1.d.ts'… 74 Info 20 [00:01:09.000] File '/user/username/projects/myproject/product/node_modules/module1.ets' … 75 Info 21 [00:01:10.000] File '/user/username/projects/myproject/product/node_modules/module1.d.ets… 76 Info 22 [00:01:11.000] File '/user/username/projects/myproject/product/node_modules/module1/index… 77 …ser/username/projects/myproject/product/node_modules/module1/index.ts', result '/user/username/pro… [all …]
|
/third_party/icu/vendor/double-conversion/upstream/test/cctest/ |
D | test-diy-fp.cc | 54 DiyFp product = DiyFp::Times(diy_fp1, diy_fp2); in TEST() local 56 CHECK(0 == product.f()); // NOLINT in TEST() 57 CHECK_EQ(64, product.e()); in TEST() 64 product = DiyFp::Times(diy_fp1, diy_fp2); in TEST() 65 CHECK(1 == product.f()); // NOLINT in TEST() 66 CHECK_EQ(11 + 13 + 64, product.e()); in TEST() 71 product = DiyFp::Times(diy_fp1, diy_fp2); in TEST() 72 CHECK(1 == product.f()); // NOLINT in TEST() 73 CHECK_EQ(11 + 13 + 64, product.e()); in TEST() 77 product = DiyFp::Times(diy_fp1, diy_fp2); in TEST() [all …]
|
/third_party/openssl/util/perl/OpenSSL/ |
D | Util.pm | 261 my $product; # Finished product, or reference to a function that 271 $product = $opts{delimiters} ? '[]' : ''; 273 $product = sub { 283 $product = $opts{delimiters} ? '{}' : ''; 285 $product = sub { 294 $product = defined $$ref ? quotify1 $$ref : "undef"; 296 $product = defined $ref ? quotify1 $ref : "undef"; 299 if (ref($product) eq "CODE") { 300 $delim_l . join($separator, map { &$product } @items) . $delim_r; 302 $product;
|
/third_party/node/deps/openssl/openssl/util/perl/OpenSSL/ |
D | Util.pm | 261 my $product; # Finished product, or reference to a function that 271 $product = $opts{delimiters} ? '[]' : ''; 273 $product = sub { 283 $product = $opts{delimiters} ? '{}' : ''; 285 $product = sub { 294 $product = defined $$ref ? quotify1 $$ref : "undef"; 296 $product = defined $ref ? quotify1 $ref : "undef"; 299 if (ref($product) eq "CODE") { 300 $delim_l . join($separator, map { &$product } @items) . $delim_r; 302 $product;
|
/third_party/python/Lib/test/ |
D | test_tuple.py | 103 from itertools import product 168 tryone("range(100) by 3", list(product(range(100), repeat=3)), 179 tryone("-10 .. 8 by 4", list(product(cands, repeat=4)), 190 tryone("0..99 << 60 by 3", list(product(L, repeat=3)), 195 tryone("[-3, 3] by 18", list(product([-3, 3], repeat=18)), 200 tryone("[0, 0.5] by 18", list(product([0, 0.5], repeat=18)), 213 list(product("abcdefghijklmnopqrstuvwxyz", repeat=4)), 223 xp = list(product(base, repeat=2)) 224 inps = base + list(product(base, xp)) + \ 225 list(product(xp, base)) + xp + list(zip(base)) [all …]
|
/third_party/icu/tools/multi/proj/icu4jscan/src/com/ibm/icu/dev/scan/ |
D | SimpleScan.java | 70 CapElement product = out.createCapElement(IcuInfo.ICU_PRODUCT); in createProduct() local 71 product.setAttribute(IcuInfo.TYPE, productName); in createProduct() 72 products.appendChild(product); in createProduct() 73 return product; in createProduct() 76 protected CapElement createRelease(CapElement product, String version) { in createRelease() argument 78 product.appendChild(releases); in createRelease() 92 CapElement product = createProduct(getProduct()); in runMain() local 94 CapElement release = createRelease(product, getRelease()); in runMain()
|
D | CapScan.java | 72 Element product = out.createElement(IcuInfo.ICU_PRODUCT); in createProduct() local 73 product.setAttribute(IcuInfo.TYPE, productName); in createProduct() 74 products.appendChild(product); in createProduct() 75 return product; in createProduct() 78 protected Element createRelease(Element product, String version) { in createRelease() argument 80 product.appendChild(releases); in createRelease() 95 Element product = createProduct(getProduct()); in runMain() local 97 Element release = createRelease(product, getRelease()); in runMain()
|
/third_party/mesa3d/ohos/ |
D | README_zh.md | 18 ./build.sh --product-name=rk3568 --build-target=expat 19 ./build.sh --product-name=rk3568 --build-target=libwayland_server.0 20 ./build.sh --product-name=rk3568 --build-target=libwayland_client.0 21 ./build.sh --product-name=rk3568 --build-target=libwayland_server 22 ./build.sh --product-name=rk3568 --build-target=libwayland_client
|
D | meson_cross_process.py | 121 def prepare_environment(project_path, product): argument 124 product = product.lower() 126 sysroot_stub = os.path.join(project_stub, "out", product, "obj", "third_party", "musl") 128 process_pkgconfig(project_path, product)
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
D | es31fShaderAtomicOpTests.cpp | 57 static inline T product (const tcu::Vector<T, Size>& v) in product() function 123 const deUint32 numValues = product(m_workGroupSize)*product(m_numWorkGroups); in init() 134 …coherent " : "") << precName << " " << outTypeName << " groupValues[" << product(m_numWorkGroups) … in init() 203 const deUint32 numValues = product(m_workGroupSize)*product(m_numWorkGroups); in iterate() 207 groupVarInfo.arraySize == product(m_numWorkGroups)); in iterate() 220 for (deUint32 valNdx = 0; valNdx < product(m_numWorkGroups); valNdx++) in iterate() 279 const int workGroupSize = (int)product(m_workGroupSize); in verify() 432 const int workGroupSize = (int)product(m_workGroupSize); in verify() 514 const int workGroupSize = (int)product(m_workGroupSize); in verify() 588 const int workGroupSize = (int)product(m_workGroupSize); in getInputs() [all …]
|
/third_party/libinput/udev/ |
D | libinput-device-group.c | 159 const char *product; in main() local 198 product = udev_device_get_property_value(device, "PRODUCT"); in main() 199 if (!product) in main() 200 product = "00/00/00/00"; in main() 202 if (sscanf(product, in main() 208 snprintf(group, sizeof(group), "%s:%s", product, phys); in main()
|
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/ |
D | MidiTools.java | 30 String manufacturer, String product) { in findDevice() argument 38 if ((product != null) && product.equals(deviceProduct)) { in findDevice()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/random/ |
D | uniform_int_distribution.h | 248 auto product = helper::multiply(bits, Lim); in Generate() local 255 if (ABSL_PREDICT_FALSE(helper::lo(product) < Lim)) { in Generate() 263 while (helper::lo(product) < threshold) { in Generate() 265 product = helper::multiply(bits, Lim); in Generate() 269 return helper::hi(product); in Generate()
|
/third_party/python/Objects/ |
D | rangeobject.c | 947 PyObject *product, *stop=NULL; in longrangeiter_reduce() local 951 product = PyNumber_Multiply(r->len, r->step); in longrangeiter_reduce() 952 if (product == NULL) in longrangeiter_reduce() 954 stop = PyNumber_Add(r->start, product); in longrangeiter_reduce() 955 Py_DECREF(product); in longrangeiter_reduce() 1022 PyObject *product, *new_index, *result; in longrangeiter_next() local 1030 product = PyNumber_Multiply(r->index, r->step); in longrangeiter_next() 1031 if (!product) { in longrangeiter_next() 1036 result = PyNumber_Add(r->start, product); in longrangeiter_next() 1037 Py_DECREF(product); in longrangeiter_next() [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | recursiveMappedTypes.types | 78 declare var product: Transform<Product>; 79 >product : Transform<Product> 81 product.users; // (Transform<User> | Transform<Guest>)[] 82 >product.users : Transform<User | Guest>[] 83 >product : Transform<Product>
|
/third_party/typescript/tests/arkTSTest/testcase/arkts-no-ctor-signatures-funcs/ |
D | arkts-no-ctor-signatures-funcs-5-error.ets | 33 const product = createProduct(Product, "Phone", 999); 34 console.log(product.name); // Phone 35 console.log(product.price); // 999
|
D | arkts-no-ctor-signatures-funcs-5-ok.ets | 37 const product = createProduct(ProductCreator, "Phone", 999); 38 console.log(product.name); // Phone 39 console.log(product.price); // 999
|
/third_party/vk-gl-cts/external/vulkan-docs/src/proposals/ |
D | VK_KHR_shader_integer_dot_product.asciidoc | 10 This document proposes adding support for shader integer dot product instructions. 14 Dot product operations between vectors of integer values are used heavily in machine learning algor… 17 An additional problem is that there is no clear common subset of accelerated dot product operations… 27 . Add dedicated dot product operations 30 Adding dedicated dot product operations is less error prone, but does mean machine learning content… 33 The question then becomes _which_ dedicated dot product operations should be exposed if there is no… 110 …lication-provided code composed from elementary instructions and/or other dot product instructions.
|
/third_party/glslang/Test/baseResults/ |
D | hlsl.int.dot.frag.out | 41 0:8 dot-product ( temp int) 47 0:9 dot-product ( temp int) 55 0:10 dot-product ( temp int) 61 0:11 dot-product ( temp int) 67 0:12 dot-product ( temp int) 155 0:8 dot-product ( temp int) 161 0:9 dot-product ( temp int) 169 0:10 dot-product ( temp int) 175 0:11 dot-product ( temp int) 181 0:12 dot-product ( temp int)
|
/third_party/skia/experimental/lowp-basic/ |
D | lowp_experiments.cpp | 62 const Q15 product = _mm_mulhrs_epi16(a, b); in ssse3_vqrdmulhq_s16() local 63 const Q15 eq = _mm_cmpeq_epi16(product, limit); in ssse3_vqrdmulhq_s16() 64 return _mm_xor_si128(eq, product); in ssse3_vqrdmulhq_s16()
|
/third_party/weex-loader/deps/weex-scripter/ |
D | NOTICE | 4 This product includes software developed at Alibaba Group. (http://www.alibabagroup.com) 6 This product contains software (https://github.com/marcuswestin/require) developed
|
/third_party/skia/third_party/externals/libjpeg-turbo/ |
D | jcdctmgr.c | 418 UDCTELEM2 product; in quantize() local 428 product = (UDCTELEM2)(temp + corr) * recip; in quantize() 429 product >>= shift + sizeof(DCTELEM) * 8; in quantize() 430 temp = (DCTELEM)product; in quantize() 433 product = (UDCTELEM2)(temp + corr) * recip; in quantize() 434 product >>= shift + sizeof(DCTELEM) * 8; in quantize() 435 temp = (DCTELEM)product; in quantize()
|
/third_party/skia/third_party/externals/opengl-registry/extensions/SGIX/ |
D | SGIX_vector_ops.txt | 30 function, and the vector cross-product operation. 31 When enabled, vector normalization or cross-product is in lieu 73 The vector cross-product operation computed a new unit vector in 75 using the standard cross-product operation.
|