Searched refs:CRLF (Results 1 - 25 of 126) sorted by relevance

123456

/prebuilts/gdb/darwin-x86/lib/python2.7/email/
H A Dquoprimime.py51 CRLF = '\r\n' variable
213 if line.endswith(CRLF):
215 elif line[-1] in CRLF:
255 if lines[lineno].endswith(CRLF) or lines[lineno][-1] in CRLF:
H A Dbase64mime.py42 CRLF = '\r\n' variable
181 return dec.replace(CRLF, convert_eols)
H A Dutils.py48 CRLF = '\r\n' variable
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/
H A Dquoprimime.py51 CRLF = '\r\n' variable
213 if line.endswith(CRLF):
215 elif line[-1] in CRLF:
255 if lines[lineno].endswith(CRLF) or lines[lineno][-1] in CRLF:
H A Dbase64mime.py42 CRLF = '\r\n' variable
181 return dec.replace(CRLF, convert_eols)
H A Dutils.py48 CRLF = '\r\n' variable
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/
H A Dquoprimime.py51 CRLF = '\r\n' variable
213 if line.endswith(CRLF):
215 elif line[-1] in CRLF:
255 if lines[lineno].endswith(CRLF) or lines[lineno][-1] in CRLF:
H A Dbase64mime.py42 CRLF = '\r\n' variable
181 return dec.replace(CRLF, convert_eols)
H A Dutils.py48 CRLF = '\r\n' variable
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/
H A Dquoprimime.py51 CRLF = '\r\n' variable
213 if line.endswith(CRLF):
215 elif line[-1] in CRLF:
255 if lines[lineno].endswith(CRLF) or lines[lineno][-1] in CRLF:
H A Dbase64mime.py42 CRLF = '\r\n' variable
181 return dec.replace(CRLF, convert_eols)
H A Dutils.py48 CRLF = '\r\n' variable
80 s = re.sub(r'(?<!\r)\n', CRLF, s)
82 s = re.sub(r'\r(?!\n)', CRLF, s)
/prebuilts/gdb/darwin-x86/lib/python2.7/
H A Dpoplib.py30 # Line terminators (we always output CRLF, but accept any of CRLF, LFCR, LF)
33 CRLF = CR+LF variable
91 self.sock.sendall('%s%s' % (line, CRLF))
101 # Internal: return one line from the server, stripping CRLF.
112 # so only possibilities are ...LF, ...CRLF, CR...LF
113 if line[-2:] == CRLF:
374 if line[-2:] == CRLF:
382 line += CRLF
H A Dftplib.py73 # Line terminators (we always output CRLF, but accept any of CRLF, CR, LF)
74 CRLF = '\r\n' variable
169 # Internal: send one line to the server, appending CRLF
171 line = line + CRLF
180 # Internal: return one line from the server, stripping CRLF.
187 if line[-2:] == CRLF: line = line[:-2]
188 elif line[-1:] in CRLF: line = line[:-1]
193 # trailing CRLF. If the response consists of multiple lines,
234 line = 'ABOR' + CRLF
[all...]
H A Dsmtplib.py38 # Better RFC 821 compliance (MAIL and RCPT, and CRLF in data)
59 CRLF = "\r\n" variable
163 Internet CRLF end-of-line.
166 re.sub(r'(?:\r\n|\n|\r(?!\n))', CRLF, data))
332 str = '%s%s' % (cmd, CRLF)
334 str = '%s %s%s' % (cmd, args, CRLF)
499 if q[-2:] != CRLF:
500 q = q + CRLF
501 q = q + "." + CRLF
H A Dnntplib.py87 # Line terminators (we always output CRLF, but accept any of CRLF, CR, LF)
88 CRLF = '\r\n' variable
190 """Internal: send one line to the server, appending CRLF."""
191 line = line + CRLF
201 """Internal: return one line from the server, stripping CRLF.
207 if line[-2:] == CRLF: line = line[:-2]
208 elif line[-1:] in CRLF: line = line[:-1]
/prebuilts/gdb/linux-x86/lib/python2.7/
H A Dpoplib.py30 # Line terminators (we always output CRLF, but accept any of CRLF, LFCR, LF)
33 CRLF = CR+LF variable
91 self.sock.sendall('%s%s' % (line, CRLF))
101 # Internal: return one line from the server, stripping CRLF.
112 # so only possibilities are ...LF, ...CRLF, CR...LF
113 if line[-2:] == CRLF:
374 if line[-2:] == CRLF:
382 line += CRLF
H A Dftplib.py73 # Line terminators (we always output CRLF, but accept any of CRLF, CR, LF)
74 CRLF = '\r\n' variable
169 # Internal: send one line to the server, appending CRLF
171 line = line + CRLF
180 # Internal: return one line from the server, stripping CRLF.
187 if line[-2:] == CRLF: line = line[:-2]
188 elif line[-1:] in CRLF: line = line[:-1]
193 # trailing CRLF. If the response consists of multiple lines,
234 line = 'ABOR' + CRLF
[all...]
H A Dsmtplib.py38 # Better RFC 821 compliance (MAIL and RCPT, and CRLF in data)
59 CRLF = "\r\n" variable
163 Internet CRLF end-of-line.
166 re.sub(r'(?:\r\n|\n|\r(?!\n))', CRLF, data))
332 str = '%s%s' % (cmd, CRLF)
334 str = '%s %s%s' % (cmd, args, CRLF)
499 if q[-2:] != CRLF:
500 q = q + CRLF
501 q = q + "." + CRLF
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A Dpoplib.py30 # Line terminators (we always output CRLF, but accept any of CRLF, LFCR, LF)
33 CRLF = CR+LF variable
91 self.sock.sendall('%s%s' % (line, CRLF))
101 # Internal: return one line from the server, stripping CRLF.
112 # so only possibilities are ...LF, ...CRLF, CR...LF
113 if line[-2:] == CRLF:
374 if line[-2:] == CRLF:
382 line += CRLF
H A Dftplib.py73 # Line terminators (we always output CRLF, but accept any of CRLF, CR, LF)
74 CRLF = '\r\n' variable
169 # Internal: send one line to the server, appending CRLF
171 line = line + CRLF
180 # Internal: return one line from the server, stripping CRLF.
187 if line[-2:] == CRLF: line = line[:-2]
188 elif line[-1:] in CRLF: line = line[:-1]
193 # trailing CRLF. If the response consists of multiple lines,
234 line = 'ABOR' + CRLF
[all...]
H A Dsmtplib.py38 # Better RFC 821 compliance (MAIL and RCPT, and CRLF in data)
59 CRLF = "\r\n" variable
163 Internet CRLF end-of-line.
166 re.sub(r'(?:\r\n|\n|\r(?!\n))', CRLF, data))
332 str = '%s%s' % (cmd, CRLF)
334 str = '%s %s%s' % (cmd, args, CRLF)
499 if q[-2:] != CRLF:
500 q = q + CRLF
501 q = q + "." + CRLF
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A Dpoplib.py30 # Line terminators (we always output CRLF, but accept any of CRLF, LFCR, LF)
33 CRLF = CR+LF variable
91 self.sock.sendall('%s%s' % (line, CRLF))
101 # Internal: return one line from the server, stripping CRLF.
112 # so only possibilities are ...LF, ...CRLF, CR...LF
113 if line[-2:] == CRLF:
374 if line[-2:] == CRLF:
382 line += CRLF
H A Dftplib.py73 # Line terminators (we always output CRLF, but accept any of CRLF, CR, LF)
74 CRLF = '\r\n' variable
169 # Internal: send one line to the server, appending CRLF
171 line = line + CRLF
180 # Internal: return one line from the server, stripping CRLF.
187 if line[-2:] == CRLF: line = line[:-2]
188 elif line[-1:] in CRLF: line = line[:-1]
193 # trailing CRLF. If the response consists of multiple lines,
234 line = 'ABOR' + CRLF
[all...]
H A Dsmtplib.py38 # Better RFC 821 compliance (MAIL and RCPT, and CRLF in data)
59 CRLF = "\r\n" variable
163 Internet CRLF end-of-line.
166 re.sub(r'(?:\r\n|\n|\r(?!\n))', CRLF, data))
332 str = '%s%s' % (cmd, CRLF)
334 str = '%s %s%s' % (cmd, args, CRLF)
499 if q[-2:] != CRLF:
500 q = q + CRLF
501 q = q + "." + CRLF

Completed in 779 milliseconds

123456