HomeSort by relevance Sort by last modified time
    Searched defs:CRLF (Results 1 - 25 of 198) sorted by null

1 2 3 4 5 6 7 8

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
base64mime.py 42 CRLF = '\r\n'
181 return dec.replace(CRLF, convert_eols)
quoprimime.py 51 CRLF = '\r\n'
213 if line.endswith(CRLF):
215 elif line[-1] in CRLF:
255 if lines[lineno].endswith(CRLF) or lines[lineno][-1] in CRLF:
utils.py 48 CRLF = '\r\n'
80 s = re.sub(r'(?<!\r)\n', CRLF, s)
82 s = re.sub(r'\r(?!\n)', CRLF, s)
  /external/python/cpython2/Lib/email/
base64mime.py 42 CRLF = '\r\n'
181 return dec.replace(CRLF, convert_eols)
quoprimime.py 51 CRLF = '\r\n'
213 if line.endswith(CRLF):
215 elif line[-1] in CRLF:
255 if lines[lineno].endswith(CRLF) or lines[lineno][-1] in CRLF:
utils.py 48 CRLF = '\r\n'
80 s = re.sub(r'(?<!\r)\n', CRLF, s)
82 s = re.sub(r'\r(?!\n)', CRLF, s)
  /external/python/cpython3/Lib/email/
base64mime.py 40 CRLF = '\r\n'
quoprimime.py 46 CRLF = '\r\n'
222 if body[-1] in CRLF:
utils.py 45 CRLF = '\r\n'
  /prebuilts/gdb/darwin-x86/lib/python2.7/email/
base64mime.py 42 CRLF = '\r\n'
181 return dec.replace(CRLF, convert_eols)
quoprimime.py 51 CRLF = '\r\n'
213 if line.endswith(CRLF):
215 elif line[-1] in CRLF:
255 if lines[lineno].endswith(CRLF) or lines[lineno][-1] in CRLF:
utils.py 48 CRLF = '\r\n'
80 s = re.sub(r'(?<!\r)\n', CRLF, s)
82 s = re.sub(r'\r(?!\n)', CRLF, s)
  /prebuilts/gdb/linux-x86/lib/python2.7/email/
base64mime.py 42 CRLF = '\r\n'
181 return dec.replace(CRLF, convert_eols)
quoprimime.py 51 CRLF = '\r\n'
213 if line.endswith(CRLF):
215 elif line[-1] in CRLF:
255 if lines[lineno].endswith(CRLF) or lines[lineno][-1] in CRLF:
utils.py 48 CRLF = '\r\n'
80 s = re.sub(r'(?<!\r)\n', CRLF, s)
82 s = re.sub(r'\r(?!\n)', CRLF, s)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
base64mime.py 42 CRLF = '\r\n'
181 return dec.replace(CRLF, convert_eols)
quoprimime.py 51 CRLF = '\r\n'
213 if line.endswith(CRLF):
215 elif line[-1] in CRLF:
255 if lines[lineno].endswith(CRLF) or lines[lineno][-1] in CRLF:
utils.py 48 CRLF = '\r\n'
80 s = re.sub(r'(?<!\r)\n', CRLF, s)
82 s = re.sub(r'\r(?!\n)', CRLF, s)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
base64mime.py 42 CRLF = '\r\n'
181 return dec.replace(CRLF, convert_eols)
quoprimime.py 51 CRLF = '\r\n'
213 if line.endswith(CRLF):
215 elif line[-1] in CRLF:
255 if lines[lineno].endswith(CRLF) or lines[lineno][-1] in CRLF:
utils.py 48 CRLF = '\r\n'
80 s = re.sub(r'(?<!\r)\n', CRLF, s)
82 s = re.sub(r'\r(?!\n)', CRLF, s)
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/server/
Reply.java 84 private static String CRLF = "\r\n";
93 cb.put("HTTP/1.0 ").put(code.toString()).put(CRLF);
94 cb.put("Server: niossl/0.1").put(CRLF);
95 cb.put("Content-type: ").put(content.type()).put(CRLF);
97 .put(Long.toString(content.length())).put(CRLF);
98 cb.put(CRLF);
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/server/
Reply.java 84 private static String CRLF = "\r\n";
93 cb.put("HTTP/1.0 ").put(code.toString()).put(CRLF);
94 cb.put("Server: niossl/0.1").put(CRLF);
95 cb.put("Content-type: ").put(content.type()).put(CRLF);
97 .put(Long.toString(content.length())).put(CRLF);
98 cb.put(CRLF);
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
HTTP.java 37 public static final String CRLF = "\r\n";
121 * The result will end with two CRLF pairs.
148 sb.append(CRLF);
157 sb.append(CRLF);
160 sb.append(CRLF);
  /frameworks/base/core/tests/coretests/src/com/android/internal/http/multipart/
MultipartTest.java 59 final String CRLF = "\r\n";
64 output.append(CRLF);
67 output.append(CRLF);
69 output.append(CRLF);
71 output.append(CRLF);
72 output.append(CRLF);
74 output.append(CRLF);
78 output.append(CRLF);
86 output.append(CRLF);
88 output.append(CRLF);
    [all...]

Completed in 721 milliseconds

1 2 3 4 5 6 7 8