Home
last modified time | relevance | path

Searched refs:extname (Results 1 – 25 of 59) 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;
111 return extname(path, ".d.ts", /*ignoreCase*/ false).length > 0;
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, 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/node_modules/JSONStream/test/
Drun.js3 var extname = require('path').extname variable
7 if (extname(file) !== '.js' || file === 'run.js')
/third_party/node/deps/npm/node_modules/mime-types/
Dindex.js16 var extname = require('path').extname variable
138 var extension = extname('x.' + path)
/third_party/node/lib/internal/modules/esm/
Dget_format.js6 const { extname } = require('path');
57 const ext = extname(parsed.pathname);
Dtranslators.js30 const { extname, isAbsolute } = require('path');
269 const ext = extname(resolved);
/third_party/typescript/src/testRunner/
DcompilerRunner.ts174 const extname = vpath.extname(this.justName); constant
175 const basename = vpath.basename(this.justName, extname, /*ignoreCase*/ true);
176 this.configuredName = `${basename}(${configuredName})${extname}`;
/third_party/node/deps/npm/node_modules/node-gyp/lib/
Dinstall.js362 var extname = path.extname(file)
363 return extname === '.h' || extname === '.gypi'
/third_party/node/doc/api/
Dpath.md161 ## `path.extname(path)`
173 The `path.extname()` method returns the extension of the `path`, from the last
180 path.extname('index.html');
183 path.extname('index.coffee.md');
186 path.extname('index.');
189 path.extname('index');
192 path.extname('.index');
195 path.extname('.index.md');
/third_party/node/tools/
Dlint-sh.js6 const { extname, join, relative, resolve } = require('path');
41 } else if (entry.isFile() && extname(entry.name) === '.sh') {
/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/deps/npm/node_modules/npm-packlist/
Dindex.js275 const exta = path.extname(a).toLowerCase()
276 const extb = path.extname(b).toLowerCase()
/third_party/node/deps/npm/node_modules/libnpx/
Dparse-args.js149 let ext = path.extname(spec.fetchSpec)
151 ext = path.extname(path.basename(spec.fetchSpec, ext)) + ext
/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/vk-gl-cts/external/vulkan-docs/src/scripts/
Ddocgenerator.py443 extname = elem.get('extname')
445 added_by_extension_to_core = (extname is not None and self.in_core)
466 self.conventions.formatExtension(extname))
Dextensionmetadocgenerator.py448 def makeExtensionInclude(self, extname): argument
449 return self.conventions.extension_include_string(extname)
655 def getSpecVersion(self, elem, extname, default=None): argument
663 versioningEnumName = self.numbersToWords(extname.upper()) + '_SPEC_VERSION'
Dparse_dependency.py83 def extensionIsSupported(extname): argument
/third_party/typescript/scripts/types/
Dambient.d.ts28 extname: string;
/third_party/node/test/fixtures/es-module-loaders/
Dexample-loader.mjs36 const ext = path.extname(pathname);
/third_party/weex-loader/deps/weex-scripter/lib/
Drequire-parse.js52 if (path.extname(absModulePath) === '.js') {

123