/external/rust/crates/csv-core/src/ |
D | lib.rs | 120 CRLF, enumerator 136 Terminator::CRLF => true, in is_crlf() 144 Terminator::CRLF => other == b'\r' || other == b'\n', in equals() 153 Terminator::CRLF in default()
|
D | reader.rs | 293 NfaState::EndRecord | NfaState::CRLF => { in from_nfa() 367 NfaState::EndRecord | NfaState::CRLF => ReadRecordResult::Record, in from_nfa() 438 CRLF = 9, enumerator 452 NfaState::CRLF, 461 | NfaState::CRLF in is_field_final() 470 NfaState::End | NfaState::EndRecord | NfaState::CRLF => true, in is_record_final() 817 Terminator::CRLF => { in build_dfa() 971 End | StartRecord | EndRecord | InComment | CRLF => End, in transition_final_nfa() 1055 (CRLF, NfaInputAction::Discard) in transition_nfa() 1060 CRLF => { in transition_nfa()
|
/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/ |
D | MultipartBuilder.java | 73 private static final byte[] CRLF = { '\r', '\n' }; field in MultipartBuilder 245 sink.write(CRLF); in writeOrCountBytes() 252 .write(CRLF); in writeOrCountBytes() 260 .write(CRLF); in writeOrCountBytes() 267 .write(CRLF); in writeOrCountBytes() 274 sink.write(CRLF); in writeOrCountBytes() 282 sink.write(CRLF); in writeOrCountBytes() 288 sink.write(CRLF); in writeOrCountBytes()
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
D | MultipartBuilder.java | 71 private static final byte[] CRLF = { '\r', '\n' }; field in MultipartBuilder 243 sink.write(CRLF); in writeOrCountBytes() 250 .write(CRLF); in writeOrCountBytes() 258 .write(CRLF); in writeOrCountBytes() 265 .write(CRLF); in writeOrCountBytes() 272 sink.write(CRLF); in writeOrCountBytes() 280 sink.write(CRLF); in writeOrCountBytes() 286 sink.write(CRLF); in writeOrCountBytes()
|
/external/rust/crates/csv/src/ |
D | lib.rs | 232 CRLF, enumerator 248 Terminator::CRLF => csv_core::Terminator::CRLF, in to_core() 257 Terminator::CRLF in default()
|
/external/python/cpython2/Lib/email/ |
D | quoprimime.py | 51 CRLF = '\r\n' variable 210 if line.endswith(CRLF): 212 elif line[-1] in CRLF: 252 if lines[lineno].endswith(CRLF) or lines[lineno][-1] in CRLF:
|
D | base64mime.py | 42 CRLF = '\r\n' variable 177 return dec.replace(CRLF, convert_eols)
|
D | utils.py | 48 CRLF = '\r\n' variable 78 s = re.sub(r'(?<!\r)\n', CRLF, s) 80 s = re.sub(r'\r(?!\n)', CRLF, s)
|
/external/openscreen/tools/cddl/ |
D | grammar.abnf | 76 BCHAR = %x20-26 / %x28-5B / %x5D-10FFFD / SESC / CRLF 90 NL = COMMENT / CRLF 91 COMMENT = ";" *PCHAR CRLF 93 CRLF = %x0A / %x0D.0A
|
/external/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
|
/external/python/cpython2/Demo/sockets/ |
D | gopher.py | 37 CRLF = '\r\n' variable 53 s.send(selector + CRLF) 66 if line[-2:] == CRLF: 68 elif line[-1:] in CRLF: 101 if line[-2:] == CRLF: 103 elif line[-1:] in CRLF:
|
/external/curl/docs/cmdline-opts/ |
D | crlf.d | 2 Help: Convert LF to CRLF in upload 6 Convert LF to CRLF in upload. Useful for MVS (OS/390).
|
/external/python/cpython2/Lib/ |
D | ftplib.py | 76 CRLF = '\r\n' variable 176 line = line + CRLF 194 if line[-2:] == CRLF: line = line[:-2] 195 elif line[-1:] in CRLF: line = line[:-1] 241 line = 'ABOR' + CRLF 452 if line[-2:] == CRLF: 510 if buf[-2:] != CRLF: 511 if buf[-1] in CRLF: buf = buf[:-1] 512 buf = buf + CRLF 757 if line[-2:] == CRLF: [all …]
|
D | poplib.py | 33 CRLF = CR+LF variable 97 self.sock.sendall('%s%s' % (line, CRLF)) 121 if line[-2:] == CRLF: 384 if line[-2:] == CRLF: 392 line += CRLF
|
D | smtplib.py | 59 CRLF = "\r\n" variable 167 re.sub(r'(?:\r\n|\n|\r(?!\n))', CRLF, data)) 339 str = '%s%s' % (cmd, CRLF) 341 str = '%s %s%s' % (cmd, args, CRLF) 508 if q[-2:] != CRLF: 509 q = q + CRLF 510 q = q + "." + CRLF
|
D | nntplib.py | 95 CRLF = '\r\n' variable 198 line = line + CRLF 216 if line[-2:] == CRLF: line = line[:-2] 217 elif line[-1:] in CRLF: line = line[:-1]
|
/external/curl/tests/data/ |
D | test1520 | 20 SMTP with CRLF-dot-CRLF in data
|
D | test901 | 20 SMTP with CRLF-dot-CRLF in data
|
/external/apache-http/src/org/apache/http/impl/io/ |
D | AbstractSessionOutputBuffer.java | 59 private static final byte[] CRLF = new byte[] {HTTP.CR, HTTP.LF}; field in AbstractSessionOutputBuffer 149 write(CRLF); in writeLine() 177 write(CRLF); in writeLine()
|
/external/pigweed/ |
D | .gitattributes | 2 # Force batch scripts to use CRLF.
|
/external/llvm-project/clang-tools-extra/test/clang-apply-replacements/Inputs/crlf/ |
D | crlf.cpp.expected | 2 // This file intentionally uses a CRLF newlines!
|
/external/python/cpython3/Lib/email/ |
D | quoprimime.py | 46 CRLF = '\r\n' variable 222 if body[-1] in CRLF:
|
/external/python/cpython3/Lib/ |
D | poplib.py | 42 CRLF = CR+LF variable 117 self.sock.sendall(line + CRLF) 143 if line[-2:] == CRLF:
|
D | ftplib.py | 70 CRLF = '\r\n' variable 197 line = line + CRLF 217 if line[-2:] == CRLF: 219 elif line[-1:] in CRLF: 465 if line[-2:] == CRLF: 585 facts_found, _, name = line.rstrip(CRLF).partition(' ')
|
/external/llvm-project/clang-tools-extra/clangd/test/ |
D | too_large.test | 3 # It is absolutely vital that this file has CRLF line endings.
|