/third_party/rust/crates/cxx/macro/src/ |
H A D | expand.rs | 418 let resolve = types.resolve(ident); in expand_cxx_type_assert_pinned() 419 let lifetimes = resolve.generics.to_underscore_lifetimes(); in expand_cxx_type_assert_pinned() 748 let resolve = types.resolve(&receiver.ty); in expand_cxx_function_shim() 753 lt_token: resolve.generics.lt_token, in expand_cxx_function_shim() 754 lifetimes: resolve in expand_cxx_function_shim() 764 gt_token: resolve.generics.gt_token, in expand_cxx_function_shim() 863 let resolve = types.resolve(iden in expand_rust_type_assert_unpin() [all...] |
/third_party/node/deps/undici/src/lib/cache/ |
H A D | cache.js | 243 responsePromise.resolve(response) 295 cacheJobPromise.resolve(undefined) 382 readAllBytes(reader).then(bodyReadPromise.resolve, bodyReadPromise.reject) 384 bodyReadPromise.resolve(undefined) 426 cacheJobPromise.resolve() 484 cacheJobPromise.resolve(!!requestResponses?.length) 567 promise.resolve(Object.freeze(requestList))
|
/third_party/node/test/parallel/ |
H A D | test-dns-lookup-promises.js | 18 req.resolve = common.mustNotCall(); 26 const originalResolve = req.resolve; 28 req.resolve = common.mustCall(originalResolve);
|
H A D | test-primordials-promise.js | 68 SafePromiseAllReturnArrayLike([Promise.resolve(val1), { then(resolve) { resolve(val2); } }]),
|
H A D | test-fs-readfilesync-enoent.js | 19 assert.strictEqual(result.toLowerCase(), path.resolve(p).toLowerCase()); 22 assert.strictEqual(result.toLowerCase(), path.resolve(p).toLowerCase());
|
/third_party/node/tools/gyp/pylib/gyp/generator/ |
H A D | compile_commands_json.py | 67 def resolve(filename): function 73 includes = ["-I" + resolve(s) for s in include_dirs] 82 file = resolve(source)
|
/third_party/node/tools/ |
H A D | test-npm-package.js | 27 const projectDir = path.resolve(__dirname, '..'); 126 srcDir = path.resolve(projectDir, arg); 128 logfile = path.resolve(projectDir, arg.slice('--logfile='.length));
|
/third_party/node/test/fixtures/wpt/FileAPI/support/ |
H A D | send-file-form-helper.js | 151 await new Promise(resolve => addEventListener('load', resolve)); 208 await new Promise(resolve => { 222 formTargetFrame.onload = resolve;
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ |
H A D | compile_commands_json.py | 67 def resolve(filename): function 73 includes = ["-I" + resolve(s) for s in include_dirs] 82 file = resolve(source)
|
/third_party/node/deps/npm/node_modules/read-package-json-fast/lib/ |
H A D | index.js | 4 const { resolve, dirname, join, relative } = require('path') 33 const entries = await readdir(resolve(root, dir)).catch(() => []) 38 const f = resolve(root, dir, entry)
|
/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/ |
H A D | processor.js | 53 return new Promise(function (resolve, reject) { 56 Promise.resolve(_this.func(root)).then(function (transform) { 67 }).then(resolve, reject);
|
/third_party/ltp/testcases/kernel/syscalls/openat2/ |
H A D | openat201.c | 23 uint64_t resolve; member 69 myhow->resolve = tc->resolve; in run()
|
H A D | openat203.c | 21 uint64_t resolve; member 30 {"invalid-resolve", AT_FDCWD, TEST_FILE, O_RDWR | O_CREAT, S_IRWXU, -1, &how, sizeof(*how), EINVAL}, 50 myhow->resolve = tc->resolve; in run()
|
/third_party/jerryscript/tests/jerry-test-suite/es2015/25/25.04/25.04.04/ |
H A D | 25.04.04-005.js | 16 var a = Promise.resolve('a'); 17 var b = Promise.resolve('b');
|
/third_party/node/lib/internal/modules/esm/ |
H A D | initialize_import_meta.js | 4 const experimentalImportMetaResolve = getOptionValue('--experimental-import-meta-resolve'); 7 * Generate a function to be used as import.meta.resolve for a particular module. 11 * @returns {(specifier: string) => string} Function to assign to import.meta.resolve 16 * @param {URL['href']} [parentURL] When `--experimental-import-meta-resolve` is specified, a 19 return function resolve(specifier, parentURL = defaultParentURL) { 48 * @returns {{url: string, resolve?: Function}} 55 meta.resolve = createImportMetaResolve(url, loader, experimentalImportMetaResolve);
|
/third_party/node/lib/stream/ |
H A D | promises.js | 20 return new Promise((resolve, reject) => { 35 resolve(value);
|
/third_party/node/test/fixtures/wpt/user-timing/ |
H A D | supported-usertiming-types.any.js | 25 await new Promise((resolve) => { 28 resolve();
|
/third_party/node/test/fixtures/wpt/html/webappapis/structured-clone/ |
H A D | structured-clone-battery-of-tests-harness.js | 32 return new Promise(resolve => { 39 resolve();
|
/third_party/node/test/fixtures/wpt/dom/events/non-cancelable-when-passive/resources/ |
H A D | touching.js | 2 return new Promise((resolve) => { 5 window.requestAnimationFrame(resolve);
|
H A D | scrolling.js | 2 return new Promise((resolve) => { 5 window.requestAnimationFrame(resolve);
|
/third_party/node/benchmark/path/ |
H A D | resolve-win32.js | 24 win32.resolve(...copy); 26 win32.resolve(...args);
|
H A D | resolve-posix.js | 24 posix.resolve(...copy); 26 posix.resolve(...args);
|
/third_party/typescript/tests/baselines/reference/ |
H A D | promiseVoidErrorCallback.js | 15 return Promise.resolve({ __t1: "foo_t1" }); 32 return Promise.resolve({ __t1: "foo_t1" });
|
H A D | importCallExpressionInCJS2.js | 37 j = await Promise.resolve().then(() => require("./1"));
42 compute(Promise.resolve().then(() => require("./0")));
|
/third_party/rust/crates/rustix/src/fs/ |
H A D | openat2.rs | 6 /// `openat2(dirfd, path, OpenHow { oflags, mode, resolve }, sizeof(OpenHow))` 18 resolve: ResolveFlags, in openat2() 21 backend::fs::syscalls::openat2(dirfd.as_fd(), path, oflags, mode, resolve) in openat2()
|