Home
last modified time | relevance | path

Searched refs:EOL (Results 1 – 25 of 93) sorted by relevance

1234

/third_party/node/test/parallel/
Dtest-child-process-prototype-tampering.mjs3 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 …]
Dtest-os-eol.js9 assert.strictEqual(os.EOL, eol);
13 assert.throws(function() { os.EOL = 123; }, TypeError);
17 EOL: { property
24 assert.strictEqual(os.EOL, foo);
Dtest-child-process-double-pipe.js121 assert.strictEqual(result, `hellO${os.EOL}nOde${os.EOL}wOrld${os.EOL}`);
Dtest-os.js192 const EOL = os.EOL; constant
194 assert.strictEqual(EOL, '\r\n');
196 assert.strictEqual(EOL, '\n');
Dtest-security-revert-unknown.js14 `Attempt to revert an unknown CVE [not-a-cve]${os.EOL}`);
Dtest-stream-pipeline-process.js24 assert.strictEqual(stdout.split(os.EOL).shift().trim(), 'hello');
Dtest-icu-data-dir.js16 `--icu-data-dir parameters)${os.EOL}`;
Dtest-openssl-ca-options.js18 }: either --use-openssl-ca or --use-bundled-ca can be used, not both${os.EOL}`
Dtest-repl-setprompt.js42 child.stdin.end(`e.setPrompt("${p}");${os.EOL}`);
Dtest-process-raw-debug.js50 assert.strictEqual(output, `I can still debug!${os.EOL}`);
Dtest-async-hooks-fatal-error.js50 assert.strictEqual(cp.stderr.trim().split(os.EOL)[0], expect, type);
/third_party/zlib/contrib/ada/
Dbuffer_demo.adb26 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/
Dformat-diff.js1 const EOL = '\n' constant
38 res += `${filename}${EOL}`
46 patch += `${str}${EOL}`
/third_party/node/test/abort/
Dtest-zlib-invalid-internals-usage.js18 `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/
Dsource_helpers.js12 const { EOL } = require('os');
194 return `'use strict';${EOL}${EOL}${code}`;
446 return codePieces.join(EOL + EOL);
/third_party/node/tools/dep_updaters/
Dupdate-cjs-module-lexer.sh62 cat > "$BASE_DIR/src/cjs_module_lexer_version.h" << EOL heredoc
69 EOL
Dupdate-base64.sh75 cat > "$BASE_DIR/src/base64_version.h" << EOL heredoc
82 EOL
/third_party/icu/
D.gitattributes2 # 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/
Dfind-unused-diganostic-messages.mjs5 import { EOL } from "os";
13 startOfDiags.split(EOL).forEach(line => {
/third_party/node/deps/npm/lib/commands/
Dls.js3 const { EOL } = require('os')
203 new Error([...problems].join(EOL)),
292 printable += `${long ? EOL : ' '}${path}`
336 (long ? `${EOL}${node.package.description || ''}` : '')
569 out += EOL
Dsbom.js3 const { EOL } = require('os')
80 new Error([...errors].join(EOL)),
/third_party/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_dump.c87 #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/
Dcpia.c42 #define EOL 0xfd /**< End Of Line marker */ macro
122 if (src[linelength - 1] != EOL) { in cpia_decode_frame()
/third_party/node/lib/internal/
Dconstants.js55 EOL: isWindows ? '\r\n' : '\n', property
Dblob.js101 const { EOL } = require('internal/constants');
116 source = RegExpPrototypeSymbolReplace(/\n|\r\n/g, source, EOL);

1234