/third_party/node/test/es-module/ |
D | test-esm-specifiers.mjs | 9 import commonjs from '../fixtures/es-module-specifiers/package-type-commonjs'; 11 import module from '../fixtures/es-module-specifiers/package-type-module'; 14 from '../fixtures/es-module-specifiers/'; 25 await import('../fixtures/es-module-specifiers/do-not-exist.js'); 49 '../../fixtures/es-module-specifiers',
|
D | test-esm-specifiers-legacy-flag.mjs | 6 import commonjs from '../fixtures/es-module-specifiers/package-type-commonjs'; 8 import module from '../fixtures/es-module-specifiers/package-type-module'; 10 import main from '../fixtures/es-module-specifiers/dir-with-main'; 13 from '../fixtures/es-module-specifiers/';
|
D | test-esm-cjs-named-error.mjs | 31 }, 'should support relative specifiers with single quotes'); 38 }, 'should support relative specifiers with double quotes'); 66 }, 'should support bare specifiers with single quotes'); 73 }, 'should support bare specifiers with double quotes'); 77 }, /import pkg from '\.\/oh'no\.cjs'/, 'should support relative specifiers with escaped single quot…
|
/third_party/node/deps/npm/node_modules/normalize-package-data/node_modules/resolve/lib/ |
D | core.js | 26 var specifiers = range.split(/ ?&& ?/); 27 if (specifiers.length === 0) { return false; } 28 for (var i = 0; i < specifiers.length; ++i) { 29 if (!specifierIncluded(specifiers[i])) { return false; }
|
/third_party/ffmpeg/doc/ |
D | formats.texi | 257 @anchor{Format stream specifiers} 258 @section Format stream specifiers 260 Format stream specifiers allow selection of one or more streams that 263 The exact semantics of stream specifiers is defined by the 266 @ref{Stream specifiers,,Stream specifiers section in the ffmpeg(1) manual,ffmpeg}.
|
D | ffplay.texi | 153 specifiers are described in the @ref{Stream specifiers} chapter. If this option 158 specifiers are described in the @ref{Stream specifiers} chapter. If this option 162 specifiers are described in the @ref{Stream specifiers} chapter. If this option
|
D | fftools-common-opts.texi | 16 @anchor{Stream specifiers} 17 @section Stream specifiers 18 Some options are applied per-stream, e.g. bitrate or codec. Stream specifiers 33 Possible forms of stream specifiers are:
|
/third_party/openssl/doc/man3/ |
D | BIO_printf.pod | 22 output. All common format specifiers are supported. 26 output. All common format specifiers are supported. The argument
|
/third_party/node/deps/npm/docs/content/cli-commands/ |
D | npm-audit.md | 117 * All git dependencies have their names and specifiers scrubbed. 118 * All remote tarball dependencies have their names and specifiers scrubbed. 119 * All local directory and tarball dependencies have their names and specifiers scrubbed.
|
/third_party/rust/crates/glob/src/ |
D | lib.rs | 787 AnyWithin(ref specifiers) => in_char_specifiers(&specifiers, c, options), in matches_from() 788 AnyExcept(ref specifiers) => !in_char_specifiers(&specifiers, c, options), in matches_from() 922 fn in_char_specifiers(specifiers: &[CharSpecifier], c: char, options: MatchOptions) -> bool { in in_char_specifiers() 923 for &specifier in specifiers.iter() { in in_char_specifiers()
|
/third_party/json/ |
D | .clang-tidy | 34 -readability-redundant-access-specifiers,
|
/third_party/node/deps/npm/node_modules/extsprintf/ |
D | README.md | 15 * argument size specifiers. These are all accepted but ignored, since
|
/third_party/node/doc/api/ |
D | esm.md | 115 There are three types of specifiers: 139 For details on these package resolution rules that apply to bare specifiers in 145 relative or absolute specifiers. Directory indexes (e.g. `'./startup/index.js'`) 472 `NODE_PATH` is not part of resolving `import` specifiers. Please use symlinks 654 // For some or all specifiers, do some custom logic for resolving. 670 // Defer to Node.js for all other specifiers. 851 In current Node.js, specifiers starting with `https://` are unsupported. The 852 loader below registers hooks to enable rudimentary support for such specifiers. 865 // Normally Node.js would error on specifiers starting with 'https://', so 878 // Let Node.js handle all other specifiers. [all …]
|
D | policy.md | 145 Therefore, multiple specifiers may be needed in the policy if it uses multiple 183 loading modules. Policy redirection only affects specifiers to `require()` and 227 If a scope or resource includes `"cascade": true`, unknown specifiers will
|
D | util.md | 247 contains format specifiers. 257 description: The `%d`, `%f` and `%i` specifiers now support Symbols 268 description: The `%d` and `%i` specifiers now support BigInt. 271 description: The `%o` and `%O` specifiers are supported now. 278 specifiers. Each specifier is replaced with the converted value from the 279 corresponding argument. Supported specifiers are: 314 number of specifiers, the extra arguments are concatenated to the returned
|
/third_party/typescript/src/services/ |
D | organizeImports.ts | 401 function sortSpecifiers<T extends ImportOrExportSpecifier>(specifiers: readonly T[]) { 402 return stableSort(specifiers, compareImportOrExportSpecifiers);
|
/third_party/ltp/tools/sparse/sparse-src/Documentation/release-notes/ |
D | v0.4.2.rst | 41 * Take the rest of specifiers to parse.c 43 * Rewrite and fix specifiers handling
|
D | v0.6.2.rst | 97 * simplify the parsing of type specifiers
|
/third_party/node/deps/npm/node_modules/libnpx/ |
D | README.md | 25 … the specifier provided. All package specifiers understood by `npm` may be used with `npx`, includ…
|
/third_party/node/src/ |
D | module_wrap.cc | 460 MaybeStackBuffer<Local<Value>, 16> specifiers(count); in GetStaticDependencySpecifiers() local 463 specifiers[i] = module->GetModuleRequest(i); in GetStaticDependencySpecifiers() 466 Array::New(env->isolate(), specifiers.out(), count)); in GetStaticDependencySpecifiers()
|
/third_party/vk-gl-cts/doc/testspecs/GLES31/ |
D | functional.uniform_location.txt | 65 These cases have declarations, locations specifiers and verification
|
/third_party/ltp/tools/sparse/sparse-src/Documentation/ |
D | types.rst | 34 * ``modifiers`` is a bit mask for type specifiers (MOD_UNSIGNED, ...),
|
/third_party/mesa3d/docs/relnotes/ |
D | 20.1.1.rst | 188 - r300g: Remove extra printf format specifiers.
|
D | 20.0.8.rst | 220 - r300g: Remove extra printf format specifiers.
|
/third_party/typescript/src/services/refactors/ |
D | moveToNewFile.ts | 321 …const specifiers = imports.map(i => factory.createImportSpecifier(/*propertyName*/ undefined, fact… constant 322 return makeImportIfNecessary(defaultImport, specifiers, path, quotePreference);
|