/third_party/typescript/tests/baselines/reference/ |
D | taggedTemplateStringsHexadecimalEscapesES6.types | 7 f `\x0D${ "Interrupted CRLF" }\x0A`; 8 >f `\x0D${ "Interrupted CRLF" }\x0A` : void 10 >`\x0D${ "Interrupted CRLF" }\x0A` : string 11 >"Interrupted CRLF" : "Interrupted CRLF"
|
D | taggedTemplateStringsHexadecimalEscapes.types | 7 f `\x0D${ "Interrupted CRLF" }\x0A`; 8 >f `\x0D${ "Interrupted CRLF" }\x0A` : void 10 >`\x0D${ "Interrupted CRLF" }\x0A` : string 11 >"Interrupted CRLF" : "Interrupted CRLF"
|
D | taggedTemplateStringsHexadecimalEscapesES6.symbols | 7 f `\x0D${ "Interrupted CRLF" }\x0A`;
|
D | taggedTemplateStringsHexadecimalEscapes.symbols | 7 f `\x0D${ "Interrupted CRLF" }\x0A`;
|
/third_party/node/test/parallel/ |
D | test-http-upgrade-client2.js | 26 const CRLF = '\r\n'; constant 30 socket.write(`HTTP/1.1 101 Ok${CRLF}` + 31 `Connection: Upgrade${CRLF}` + 32 `Upgrade: Test${CRLF}${CRLF}` +
|
D | test-http-header-overflow.js | 9 const CRLF = '\r\n'; constant 16 const PAYLOAD = PAYLOAD_GET + CRLF + 17 DUMMY_HEADER_NAME + DUMMY_HEADER_VALUE + CRLF.repeat(2); 26 bytesParsed: maxHeaderSize + PAYLOAD_GET.length + (CRLF.length * 2) + 1,
|
D | test-https-foafssl.js | 46 const CRLF = '\r\n'; constant 75 const contents = message.split(CRLF + CRLF).pop();
|
/third_party/node/benchmark/http/ |
D | bench-parser.js | 19 const CRLF = '\r\n'; 46 let header = `GET /hello HTTP/1.1${CRLF}Content-Type: text/plain${CRLF}`; 49 header += `X-Filler${i}: ${Math.random().toString(36).substr(2)}${CRLF}`; 51 header += CRLF;
|
/third_party/node/deps/npm/node_modules/stringify-package/ |
D | index.js | 6 const CRLF = '\r\n' constant 13 if (newline === CRLF) { 14 return json.replace(/\n/g, CRLF) + CRLF
|
/third_party/node/lib/ |
D | _http_server.js | 40 CRLF, 241 this._writeRaw(`HTTP/1.1 100 Continue${CRLF}${CRLF}`, 'ascii', cb); 246 this._writeRaw(`HTTP/1.1 102 Processing${CRLF}${CRLF}`, 'ascii', cb); 309 const statusLine = `HTTP/1.1 ${statusCode} ${this.statusMessage}${CRLF}`; 628 `HTTP/1.1 400 ${STATUS_CODES[400]}${CRLF}` + 629 `Connection: close${CRLF}${CRLF}`, 'ascii' 632 `HTTP/1.1 408 ${STATUS_CODES[408]}${CRLF}` + 633 `Connection: close${CRLF}${CRLF}`, 'ascii' 636 `HTTP/1.1 431 ${STATUS_CODES[431]}${CRLF}` + 637 `Connection: close${CRLF}${CRLF}`, 'ascii'
|
D | _http_outgoing.js | 71 const { CRLF, debug } = common; 409 header += 'Date: ' + utcDate() + CRLF; 459 header += 'Content-Length: ' + this._contentLength + CRLF; 479 this._header = header + CRLF; 506 state.header += key + ': ' + value + CRLF; 786 this._trailer += field + ': ' + value + CRLF;
|
/third_party/cef/tools/yapf/yapf/yapflib/ |
D | file_resources.py | 32 CRLF = '\r\n' variable 104 endings = {CRLF: 0, CR: 0, LF: 0} 106 if line.endswith(CRLF): 107 endings[CRLF] += 1
|
/third_party/mbedtls/tests/suites/ |
D | test_suite_base64.data | 109 Base64 decode "Zm9vYmFy\r\n" (CRLF at end) 121 Base64 decode "Zm9vYmFy \r\n" (SP+CRLF at end) 133 Base64 decode "Zm9vYmFy \r\n" (2SP+CRLF at end) 142 Base64 decode "Zm9vYmF\ry" (CRLF inside) 154 Base64 decode "Zm9vYmF \ry" (SP+CRLF inside) 166 Base64 decode "Zm9vYmF \ry" (2SP+CRLF inside)
|
/third_party/curl/ |
D | backport-0001-CVE-2023-23916.patch | 4 Subject: [PATCH] runtests: do CRLF replacements per section only 46 +`crlf=yes` forces *header* newlines to become CRLF even if not written so in 48 +header and what is not in order to apply the CRLF line endings appropriately. 82 +`crlf=yes` forces the newlines to become CRLF even if not written so in the 101 +`crlf=yes` forces the newlines to become CRLF even if not written so in the 151 + # enforce CRLF newline 161 # enforce CRLF newline 179 + # The processor does CRLF replacements in the <data*> sections if
|
D | .gitattributes | 10 # Batch files (bat,btm,cmd) must be run with CRLF line endings.
|
/third_party/node/deps/npm/node_modules/form-data/ |
D | README.md | 124 var CRLF = '\r\n'; 128 header: CRLF + '--' + form.getBoundary() + CRLF + 'X-Custom-Header: 123' + CRLF + CRLF,
|
D | README.md.bak | 124 var CRLF = '\r\n'; 128 header: CRLF + '--' + form.getBoundary() + CRLF + 'X-Custom-Header: 123' + CRLF + CRLF,
|
/third_party/python/Lib/ |
D | ftplib.py | 70 CRLF = '\r\n' variable 199 line = line + CRLF 219 if line[-2:] == CRLF: 221 elif line[-1:] in CRLF: 472 if line[-2:] == CRLF: 592 facts_found, _, name = line.rstrip(CRLF).partition(' ')
|
D | poplib.py | 42 CRLF = CR+LF variable 117 self.sock.sendall(line + CRLF) 143 if line[-2:] == CRLF:
|
/third_party/python/Lib/email/ |
D | quoprimime.py | 46 CRLF = '\r\n' variable 222 if body[-1] in CRLF:
|
/third_party/lwip/src/apps/http/ |
D | httpd.c | 120 #define CRLF "\r\n" macro 969 SMEMCPY(&hs->hdr_content_len[len], CRLF, 3); 1806 char *crlfcrlf = lwip_strnstr(uri_end + 1, CRLF CRLF, data_len - (uri_end + 1 - data)); 1815 …char *scontent_len_end = lwip_strnstr(scontent_len + HTTP_HDR_CONTENT_LEN_LEN, CRLF, HTTP_HDR_CONT… 2027 crlf = lwip_strnstr(data, CRLF, data_len); 2063 sp2 = lwip_strnstr(sp1 + 1, CRLF, left_len); 2076 if (lwip_strnstr(data, CRLF CRLF, data_len) != NULL) { 2394 char *file_start = lwip_strnstr(hs->file, CRLF CRLF, hs->left);
|
/third_party/cups-filters/filter/ |
D | texttotext.c | 48 CRLF = 2 enumerator 112 newline_char_t newline_char = CRLF; /* Character to send at end of line */ in main() 482 newline_char = CRLF; in main() 549 else if (newline_char == CRLF) in main()
|
/third_party/openh264/ |
D | CODING_STYLE | 5 Please do not add tabs, trailing whitespace, or Windows-style line endings (CRLF).
|
/third_party/vulkan-headers/ |
D | .gitattributes | 11 # Text files to always have CRLF (dos) line endings on checkout.
|
/third_party/flutter/flutter/ |
D | .gitattributes | 17 # Make sure that these Windows files always have CRLF line endings in checkout
|