/third_party/node/test/parallel/ |
D | test-child-process-prototype-tampering.mjs | 3 import { EOL } from 'node:os'; 18 strictEqual(`${out}`, `${expectedCWD}${EOL}`); 20 strictEqual(`${cp.execSync('pwd')}`, `${expectedCWD}${EOL}`); 22 strictEqual(`${out}`, `${expectedCWD}${EOL}`); 24 strictEqual(`${cp.execFileSync('pwd')}`, `${expectedCWD}${EOL}`); 26 strictEqual(`${out}`, `${expectedCWD}${EOL}`); 28 strictEqual(`${cp.spawnSync('pwd').stdout}`, `${expectedCWD}${EOL}`); 37 strictEqual(`${out}`, `${expectedUID}${EOL}`); 39 strictEqual(`${cp.execSync('id -u')}`, `${expectedUID}${EOL}`); 41 strictEqual(`${out}`, `${expectedUID}${EOL}`); [all …]
|
D | test-os-eol.js | 9 assert.strictEqual(os.EOL, eol); 13 assert.throws(function() { os.EOL = 123; }, TypeError); 17 EOL: { property 24 assert.strictEqual(os.EOL, foo);
|
D | test-child-process-double-pipe.js | 121 assert.strictEqual(result, `hellO${os.EOL}nOde${os.EOL}wOrld${os.EOL}`);
|
D | test-os.js | 192 const EOL = os.EOL; constant 194 assert.strictEqual(EOL, '\r\n'); 196 assert.strictEqual(EOL, '\n');
|
D | test-security-revert-unknown.js | 14 `Attempt to revert an unknown CVE [not-a-cve]${os.EOL}`);
|
D | test-stream-pipeline-process.js | 24 assert.strictEqual(stdout.split(os.EOL).shift().trim(), 'hello');
|
D | test-icu-data-dir.js | 16 `--icu-data-dir parameters)${os.EOL}`;
|
D | test-openssl-ca-options.js | 18 }: either --use-openssl-ca or --use-bundled-ca can be used, not both${os.EOL}`
|
D | test-repl-setprompt.js | 42 child.stdin.end(`e.setPrompt("${p}");${os.EOL}`);
|
D | test-process-raw-debug.js | 50 assert.strictEqual(output, `I can still debug!${os.EOL}`);
|
D | test-async-hooks-fatal-error.js | 50 assert.strictEqual(cp.stderr.trim().split(os.EOL)[0], expect, type);
|
/third_party/zlib/contrib/ada/ |
D | buffer_demo.adb | 26 EOL : Character renames ASCII.LF; variable 28 := "Four score and seven years ago our fathers brought forth," & EOL & 29 "upon this continent, a new nation, conceived in liberty," & EOL &
|
/third_party/node/deps/npm/node_modules/libnpmdiff/lib/ |
D | format-diff.js | 1 const EOL = '\n' constant 38 res += `${filename}${EOL}` 46 patch += `${str}${EOL}`
|
/third_party/node/test/abort/ |
D | test-zlib-invalid-internals-usage.js | 18 `is incompatible with this version of Node.js.${os.EOL}` + 21 `compatible with Node.js 9 and above.${os.EOL}`));
|
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/ |
D | source_helpers.js | 12 const { EOL } = require('os'); 194 return `'use strict';${EOL}${EOL}${code}`; 446 return codePieces.join(EOL + EOL);
|
/third_party/node/tools/dep_updaters/ |
D | update-cjs-module-lexer.sh | 62 cat > "$BASE_DIR/src/cjs_module_lexer_version.h" << EOL heredoc 69 EOL
|
D | update-base64.sh | 75 cat > "$BASE_DIR/src/base64_version.h" << EOL heredoc 82 EOL
|
/third_party/icu/ |
D | .gitattributes | 2 # For text files (auto-detected), EOLs will be converted on checkout to OS-dependent EOL (LF for U… 3 # No EOL (end of line) conversion for binary files. 9 # The only difference between the two is that git will do EOL conversion for text files.
|
/third_party/typescript/scripts/ |
D | find-unused-diganostic-messages.mjs | 5 import { EOL } from "os"; 13 startOfDiags.split(EOL).forEach(line => {
|
/third_party/node/deps/npm/lib/commands/ |
D | ls.js | 3 const { EOL } = require('os') 203 new Error([...problems].join(EOL)), 292 printable += `${long ? EOL : ' '}${path}` 336 (long ? `${EOL}${node.package.description || ''}` : '') 569 out += EOL
|
D | sbom.js | 3 const { EOL } = require('os') 80 new Error([...errors].join(EOL)),
|
/third_party/mesa3d/src/gallium/auxiliary/tgsi/ |
D | tgsi_dump.c | 87 #define EOL() ctx->dump_printf( ctx, "\n" ) macro 445 EOL(); in iter_declaration() 498 EOL(); in iter_property() 529 EOL(); in iter_immediate() 679 EOL(); in iter_instruction() 708 EOL(); in prolog()
|
/third_party/ffmpeg/libavcodec/ |
D | cpia.c | 42 #define EOL 0xfd /**< End Of Line marker */ macro 122 if (src[linelength - 1] != EOL) { in cpia_decode_frame()
|
/third_party/node/lib/internal/ |
D | constants.js | 55 EOL: isWindows ? '\r\n' : '\n', property
|
D | blob.js | 101 const { EOL } = require('internal/constants'); 116 source = RegExpPrototypeSymbolReplace(/\n|\r\n/g, source, EOL);
|