/aosp_15_r20/external/python/cpython2/Lib/email/ |
D | charset.py | 347 def header_encode(self, s, convert=False): member in Charset 365 return email.base64mime.header_encode(s, cset) 367 return email.quoprimime.header_encode(s, cset, maxlinelen=None) 372 return email.base64mime.header_encode(s, cset) 374 return email.quoprimime.header_encode(s, cset, maxlinelen=None)
|
D | base64mime.py | 64 def header_encode(header, charset='iso-8859-1', keep_eols=False, function
|
D | quoprimime.py | 114 def header_encode(header, charset="iso-8859-1", keep_eols=False, function
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/email/ |
D | charset.py | 279 def header_encode(self, string): member in Charset 296 return encoder_module.header_encode(header_bytes, codec) 319 encoder = partial(encoder_module.header_encode, charset=codec)
|
D | base64mime.py | 61 def header_encode(header_bytes, charset='iso-8859-1'): function
|
D | quoprimime.py | 127 def header_encode(header_bytes, charset='iso-8859-1'): function
|
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/email/ |
H A D | charset.py | 279 def header_encode(self, string): member in Charset 296 return encoder_module.header_encode(header_bytes, codec) 319 encoder = partial(encoder_module.header_encode, charset=codec)
|
H A D | base64mime.py | 61 def header_encode(header_bytes, charset='iso-8859-1'): function
|
H A D | quoprimime.py | 127 def header_encode(header_bytes, charset='iso-8859-1'): function
|
H A D | utils.py | 98 encoded_name = charset.header_encode(name)
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/email/ |
D | charset.py | 279 def header_encode(self, string): member in Charset 296 return encoder_module.header_encode(header_bytes, codec) 319 encoder = partial(encoder_module.header_encode, charset=codec)
|
D | base64mime.py | 61 def header_encode(header_bytes, charset='iso-8859-1'): function
|
D | quoprimime.py | 127 def header_encode(header_bytes, charset='iso-8859-1'): function
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/email/ |
D | charset.py | 279 def header_encode(self, string): member in Charset 296 return encoder_module.header_encode(header_bytes, codec) 319 encoder = partial(encoder_module.header_encode, charset=codec)
|
D | base64mime.py | 61 def header_encode(header_bytes, charset='iso-8859-1'): function
|
D | quoprimime.py | 127 def header_encode(header_bytes, charset='iso-8859-1'): function
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/email/ |
D | charset.py | 279 def header_encode(self, string): member in Charset 296 return encoder_module.header_encode(header_bytes, codec) 319 encoder = partial(encoder_module.header_encode, charset=codec)
|
D | base64mime.py | 61 def header_encode(header_bytes, charset='iso-8859-1'): function
|
D | quoprimime.py | 127 def header_encode(header_bytes, charset='iso-8859-1'): function
|
/aosp_15_r20/external/python/cpython3/Lib/email/ |
D | charset.py | 279 def header_encode(self, string): member in Charset 296 return encoder_module.header_encode(header_bytes, codec) 319 encoder = partial(encoder_module.header_encode, charset=codec)
|
D | base64mime.py | 61 def header_encode(header_bytes, charset='iso-8859-1'): function
|
D | quoprimime.py | 127 def header_encode(header_bytes, charset='iso-8859-1'): function
|
/aosp_15_r20/external/python/cpython3/Doc/library/ |
D | email.charset.rst | 121 .. method:: header_encode(string) 133 This is similar to :meth:`header_encode` except that the string is fit
|
/aosp_15_r20/external/python/cpython2/Doc/library/ |
D | email.charset.rst | 158 .. method:: header_encode(s[, convert]) 179 :meth:`header_encode`, there are no issues with byte boundaries and
|
/aosp_15_r20/external/python/cpython3/Lib/test/test_email/ |
D | test_email.py | 3208 def header_encode(self, string): member in TestMiscellaneous.test_accepts_any_charset_like_object.CharsetMock 4365 he = base64mime.header_encode 4417 eq(len(quoprimime.header_encode(b'hello', charset='xxx')), 4423 eq(len(quoprimime.header_encode(b'h@e@l@l@o@', charset='xxx')), 4452 encoded_header = quoprimime.header_encode(header) 4454 encoded_header = quoprimime.header_encode(header, charset) 4708 eq(c.header_encode('Hello World!'), 'Hello World!') 4711 self.assertRaises(UnicodeError, c.header_encode, s) 4713 eq(c.header_encode(s), '=?utf-8?b?wqTCosKkwqTCpMKmwqTCqMKkwqo=?=')
|