Home
last modified time | relevance | path

Searched refs:pathToFileURL (Results 1 – 25 of 40) sorted by relevance

12

/third_party/node/test/parallel/
Dtest-url-pathtofileurl.js7 const fileURL = url.pathToFileURL('test/').href;
13 const fileURL = url.pathToFileURL('test\\').href;
22 const fileURL = url.pathToFileURL('test/%').href;
31 assert.throws(() => url.pathToFileURL('\\\\\\no-server'), {
36 assert.throws(() => url.pathToFileURL('\\\\host'), {
41 const fileURL = url.pathToFileURL('\\\\nas\\share\\path.txt').href;
143 const actual = url.pathToFileURL(path).href;
Dtest-policy-parse-integrity.js13 const { pathToFileURL } = require('url');
33 const depURL = pathToFileURL(depFilepath);
39 const tmpdirURL = pathToFileURL(tmpdirPath);
45 const packageURL = pathToFileURL(packageFilepath);
Dtest-directory-import.js6 const { pathToFileURL } = require('url');
11 import(pathToFileURL(fixtures.path('packages', 'main'))),
Dtest-inspector-multisession-js.js10 const { pathToFileURL } = require('url');
38 'url': pathToFileURL(path.resolve(__dirname, __filename)).toString(),
Dtest-fs-whatwg-url.js10 function pathToFileURL(p) { function
19 const url = pathToFileURL(p);
Dtest-child-process-cwd.js30 const { pathToFileURL, URL } = require('url');
91 testCwd({ cwd: pathToFileURL(tmpdir.path) }, 'number', 0, tmpdir.path);
Dtest-inspector-bindings.js7 const { pathToFileURL } = require('url');
89 'url': pathToFileURL(path.resolve(__dirname, __filename)).toString(),
Dtest-source-map-enable.js11 const { pathToFileURL } = require('url');
92 dirname(pathToFileURL(
113 dirname(pathToFileURL(
Dtest-inspector-connect-main-thread.js9 const { pathToFileURL } = require('url');
128 'url': pathToFileURL(path.resolve(__dirname, __filename)).toString(),
/third_party/node/test/sequential/
Dtest-inspector-break-when-eval.js7 const { pathToFileURL } = require('url');
37 'url': pathToFileURL(script).toString(),
52 await session.waitForBreakOnLine(9, pathToFileURL(script).toString());
Dtest-inspector-exception.js9 const { pathToFileURL } = require('url');
32 await session.waitForBreakOnLine(21, pathToFileURL(script).toString());
/third_party/node/test/node-api/test_policy/
Dtest_policy.js12 const { pathToFileURL } = require('url');
25 const depURL = pathToFileURL(depFilepath);
27 const tmpdirURL = pathToFileURL(tmpdir.path);
/third_party/node/test/es-module/
Dtest-esm-tla.mjs4 import { pathToFileURL } from 'url';
6 import(pathToFileURL(fixtures.path('/es-modules/tla/parent.mjs')))
Dtest-esm-undefined-cjs-global-like-variables.js5 const { pathToFileURL } = require('url');
21 const pkgUrl = pathToFileURL(fixtures.path('/es-modules/package-type-module/'));
/third_party/node/lib/internal/modules/
Dpackage_json_reader.js5 const { pathToFileURL } = require('url');
33 const jsonURL = pathToFileURL(jsonPath);
Drun_main.js48 const { pathToFileURL } = require('internal/url');
51 pathToFileURL(mainPath).href : mainPath;
/third_party/node/lib/internal/main/
Dcheck_syntax.js14 const { pathToFileURL } = require('url');
56 const { url } = defaultResolve(pathToFileURL(filename).toString());
/third_party/node/lib/internal/process/
Desm_loader.js10 const { pathToFileURL } = require('internal/url');
57 await ESMLoader.import(userLoader, pathToFileURL(cwd).href);
Dexecution.js59 const { pathToFileURL } = require('url');
69 const baseUrl = pathToFileURL(module.filename).href;
/third_party/node/lib/internal/modules/cjs/
Dloader.js78 const { pathToFileURL, fileURLToPath, isURLInstance } = require('internal/url');
427 pathToFileURL(pkgPath + '/package.json'), expansion, pkg,
428 pathToFileURL(parentPath), cjsConditions), request, parentPath, pkgPath);
451 pathToFileURL(pkgPath + '/package.json'), '.' + expansion, pkg, null,
865 packageImportsResolve(request, pathToFileURL(parent.filename),
1043 moduleURL = pathToFileURL(filename);
1123 const moduleURL = pathToFileURL(filename);
1140 const moduleURL = pathToFileURL(filename);
Dhelpers.js23 const { pathToFileURL, fileURLToPath, URL } = require('internal/url');
190 return pathToFileURL(referrer).href;
/third_party/node/lib/internal/modules/esm/
Dresolve.js42 const { URL, pathToFileURL, fileURLToPath } = require('internal/url');
282 const mainUrl = pathToFileURL(resolve(dirPath, main));
590 packageJSONUrl = pathToFileURL(packageConfig.pjsonPath);
693 const packageJSONUrl = pathToFileURL(packageConfig.pjsonPath);
872 parentURL = pathToFileURL(`${process.cwd()}/`).href;
917 url = pathToFileURL(
Dloader.js24 const { URL, pathToFileURL, isURLInstance } = require('internal/url');
155 url = pathToFileURL(`${process.cwd()}/[eval${++this.evalIndex}]`).href
/third_party/node/lib/internal/source_map/
Dsource_map_cache.js39 const { fileURLToPath, pathToFileURL, URL } = require('internal/url');
223 sourceURL = pathToFileURL(sourceURL).href;
/third_party/node/test/common/
Dinspector-helper.js9 const { pathToFileURL } = require('url');
178 url : pathToFileURL(url).toString();
324 return pathToFileURL(this.scriptPath());

12