Home
last modified time | relevance | path

Searched refs:body_encode (Results 1 – 25 of 49) sorted by relevance

12

/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/email/
Dcharset.py375 def body_encode(self, string): member in Charset
389 return email.base64mime.body_encode(string)
400 return email.quoprimime.body_encode(string)
Dcontentmanager.py159 sniff_qp = quoprimime.body_encode(sniff.decode('latin-1'),
174 data = quoprimime.body_encode(normal_body(lines).decode('latin-1'),
Dbase64mime.py76 def body_encode(s, maxlinelen=76, eol=NL): function
Dquoprimime.py153 def body_encode(body, maxlinelen=76, eol=NL): function
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/email/
H A Dcharset.py375 def body_encode(self, string): member in Charset
389 return email.base64mime.body_encode(string)
400 return email.quoprimime.body_encode(string)
H A Dcontentmanager.py159 sniff_qp = quoprimime.body_encode(sniff.decode('latin-1'),
174 data = quoprimime.body_encode(normal_body(lines).decode('latin-1'),
H A Dbase64mime.py76 def body_encode(s, maxlinelen=76, eol=NL): function
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/email/
Dcharset.py375 def body_encode(self, string): member in Charset
389 return email.base64mime.body_encode(string)
400 return email.quoprimime.body_encode(string)
Dcontentmanager.py159 sniff_qp = quoprimime.body_encode(sniff.decode('latin-1'),
174 data = quoprimime.body_encode(normal_body(lines).decode('latin-1'),
Dbase64mime.py76 def body_encode(s, maxlinelen=76, eol=NL): function
Dquoprimime.py153 def body_encode(body, maxlinelen=76, eol=NL): function
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/email/
Dcharset.py375 def body_encode(self, string): member in Charset
389 return email.base64mime.body_encode(string)
400 return email.quoprimime.body_encode(string)
Dcontentmanager.py159 sniff_qp = quoprimime.body_encode(sniff.decode('latin-1'),
174 data = quoprimime.body_encode(normal_body(lines).decode('latin-1'),
Dbase64mime.py76 def body_encode(s, maxlinelen=76, eol=NL): function
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/email/
Dcharset.py375 def body_encode(self, string): member in Charset
389 return email.base64mime.body_encode(string)
400 return email.quoprimime.body_encode(string)
Dcontentmanager.py159 sniff_qp = quoprimime.body_encode(sniff.decode('latin-1'),
174 data = quoprimime.body_encode(normal_body(lines).decode('latin-1'),
Dbase64mime.py76 def body_encode(s, maxlinelen=76, eol=NL): function
/aosp_15_r20/external/python/cpython3/Lib/email/
Dcharset.py375 def body_encode(self, string): member in Charset
389 return email.base64mime.body_encode(string)
400 return email.quoprimime.body_encode(string)
Dcontentmanager.py159 sniff_qp = quoprimime.body_encode(sniff.decode('latin-1'),
174 data = quoprimime.body_encode(normal_body(lines).decode('latin-1'),
Dbase64mime.py76 def body_encode(s, maxlinelen=76, eol=NL): function
Dquoprimime.py153 def body_encode(body, maxlinelen=76, eol=NL): function
/aosp_15_r20/external/python/cpython2/Lib/email/
Dcharset.py378 def body_encode(self, s, convert=True): member in Charset
393 return email.base64mime.body_encode(s)
395 return email.quoprimime.body_encode(s)
Dmessage.py264 self._payload = charset.body_encode(self._payload)
270 self._payload = charset.body_encode(self._payload)
Dbase64mime.py155 body_encode = encode variable
/aosp_15_r20/external/python/cpython3/Lib/test/test_email/
Dtest_email.py4326 len(base64mime.body_encode(b'hello', eol='')))
4343 eq(base64mime.body_encode(b''), '')
4344 eq(base64mime.body_encode(b'hello'), 'aGVsbG8=\n')
4346 eq(base64mime.body_encode(b'hello\n'), 'aGVsbG8K\n')
4348 eq(base64mime.body_encode(b'xxxx ' * 20, maxlinelen=40), """\
4355 eq(base64mime.body_encode(b'xxxx ' * 20, maxlinelen=40, eol='\r\n'),
4583 encoded_body = quoprimime.body_encode(body, **kwargs)
4670 eq(quoprimime.body_encode(''), '')
4671 eq(quoprimime.body_encode('hello'), 'hello')
4673 eq(quoprimime.body_encode('hello\r\nworld'), 'hello\nworld')
[all …]

12