Home
last modified time | relevance | path

Searched refs:extname (Results 1 – 25 of 60) sorted by relevance

123

/third_party/node/test/parallel/
Dtest-path-extname.js55 [path.posix.extname, path.win32.extname].forEach((extname) => {
58 if (extname === path.win32.extname) {
64 const actual = extname(input);
72 const actual = path.win32.extname(input);
82 assert.strictEqual(path.win32.extname('.\\'), '');
83 assert.strictEqual(path.win32.extname('..\\'), '');
84 assert.strictEqual(path.win32.extname('file.ext\\'), '.ext');
85 assert.strictEqual(path.win32.extname('file.ext\\\\'), '.ext');
86 assert.strictEqual(path.win32.extname('file\\'), '');
87 assert.strictEqual(path.win32.extname('file\\\\'), '');
[all …]
Dtest-path.js49 fail(namespace.extname, test);
/third_party/typescript/src/harness/
DvpathUtil.ts20 export import extname = ts.getAnyExtensionFromPath;
115 return extname(path, ".map", /*ignoreCase*/ false).length > 0;
121 return extname(path, javaScriptSourceMapExtensions, /*ignoreCase*/ false).length > 0;
125 …return extname(path, ".json", /*ignoreCase*/ false).length > 0 || extname(path, ".json5", /*ignore…
DcompilerImpl.ts121 … const extname = ts.getOutputExtension(sourceFile.fileName, this.options); constant
124 js: js.get(this.getOutputPath(sourceFile.fileName, extname)),
126 … map: maps.get(this.getOutputPath(sourceFile.fileName, extname + ".map"))
/third_party/node/deps/npm/test/bin/
Dwindows-shims.js3 const { resolve, join, extname, basename, sep } = require('path')
13 if (extname(shim) !== '.js') {
19 const SHIM_EXTS = [...new Set(Object.keys(SHIMS).map(p => extname(p)))]
/third_party/node/deps/npm/node_modules/libnpmdiff/lib/
Dshould-print-patch.js1 const { basename, extname } = require('path')
16 : extname(filename)
/third_party/node/deps/npm/node_modules/bin-links/lib/
Dget-paths.js6 const { resolve, basename, extname } = require('path')
34 const section = extname(basename(man, '.gz')).slice(1)
/third_party/typescript/src/testRunner/
DcompilerRunner.ts183 const extname = vpath.extname(this.justName); constant
184 const basename = vpath.basename(this.justName, extname, /*ignoreCase*/ true);
185 this.configuredName = `${basename}(${configuredName})${extname}`;
/third_party/node/lib/internal/modules/esm/
Dget_format.js9 const { basename, extname, relative } = require('path');
56 const ext = extname(filepath);
Dtranslators.js28 const { extname, isAbsolute } = require('path');
239 const ext = extname(resolved);
/third_party/node/deps/npm/node_modules/node-gyp/lib/
Dinstall.js359 const extname = path.extname(file)
360 return extname === '.h' || extname === '.gypi'
/third_party/curl/scripts/
Dupdatemanpages.pl252 foreach my $extname (@extlist) {
257 my @filelist = grep(/.$extname$/i, readdir($dir_handle));
/third_party/node/deps/npm/test/lib/
Ddocs.js2 const { join, resolve, basename, extname } = require('path')
94 return files.filter(f => extname(f) === ext).map(f => basename(f, ext))
/third_party/node/doc/api/
Dpath.md164 ## `path.extname(path)`
177 The `path.extname()` method returns the extension of the `path`, from the last
184 path.extname('index.html');
187 path.extname('index.coffee.md');
190 path.extname('index.');
193 path.extname('index');
196 path.extname('.index');
199 path.extname('.index.md');
/third_party/node/benchmark/path/
Dextname-win32.js24 win32.extname(i % 3 === 0 ? `${path}${i}` : path);
Dextname-posix.js24 posix.extname(i % 3 === 0 ? `${path}${i}` : path);
/third_party/node/tools/
Dlint-sh.mjs5 import { extname, join, relative, resolve } from 'node:path';
41 } else if (entry.isFile() && extname(entry.name) === '.sh') {
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
Ddocgenerator.py409 extname = elem.get('extname')
411 added_by_extension_to_core = (extname is not None and self.in_core)
432 self.conventions.formatExtension(extname))
/third_party/weex-loader/src/
Dloader.js223 const filename = _this.resourcePath.replace(path.extname(_this.resourcePath).toString(), '')
282 if (path.extname(_this.resourcePath).match(/\.hml/)) {
283 const filename = _this.resourcePath.replace(path.extname(_this.resourcePath).toString(), '')
Djson.js34 const extName = path.extname(this.resourcePath)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/
DSystemZFeatures.td13 class SystemZFeature<string extname, string intname, string desc>
15 AssemblerPredicate<"Feature"##intname, extname>,
16 SubtargetFeature<extname, "Has"##intname, "true", desc>;
/third_party/node/deps/npm/node_modules/@npmcli/arborist/bin/
Dindex.js61 const commandFiles = fs.readdirSync(__dirname).filter((f) => path.extname(f) === '.js' && f !== __f…
/third_party/node/test/fixtures/es-module-loaders/
Dexample-loader.mjs38 const ext = path.extname(pathname);
/third_party/typescript/scripts/types/
Dambient.d.ts28 extname: string;
/third_party/weex-loader/deps/weex-scripter/lib/
Drequire-parse.js52 if (path.extname(absModulePath) === '.js') {

123