Searched refs:_charset (Results 1 – 7 of 7) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/mime/ |
D | text.py | 17 def __init__(self, _text, _subtype='plain', _charset='us-ascii'): argument 29 **{'charset': _charset}) 30 self.set_payload(_text, _charset)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | gettext.py | 178 self._charset = None 236 return self._charset 314 self._charset = v.split('charset=')[1] 332 if self._charset: 333 msgid1 = unicode(msgid1, self._charset) 334 tmsg = [unicode(x, self._charset) for x in tmsg] 338 if self._charset: 339 msg = unicode(msg, self._charset) 340 tmsg = unicode(tmsg, self._charset) 356 elif self._charset: [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | gettext.py | 176 self._charset = None 234 return self._charset 311 self._charset = v.split('charset=')[1] 329 if self._charset: 330 msgid1 = unicode(msgid1, self._charset) 331 tmsg = [unicode(x, self._charset) for x in tmsg] 335 if self._charset: 336 msg = unicode(msg, self._charset) 337 tmsg = unicode(tmsg, self._charset) 353 elif self._charset: [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/ |
D | message.py | 111 self._charset = None 245 self._charset = None 253 self._charset = charset 276 return self._charset
|
D | header.py | 177 self._charset = charset 255 charset = self._charset
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/test/ |
D | test_email.py | 586 msg = MIMEText('hello \xf8 world', _charset='iso-8859-1') 594 msg = email.MIMEText.MIMEText('\xca\xb8', _charset='euc-jp') 1066 msg = MIMEText('hello there', _charset='us-ascii') 1072 msg = MIMEText(u'hello there', _charset='us-ascii') 1086 msg = MIMEText(teststr, _charset='utf-8')
|
D | test_email_renamed.py | 530 msg = MIMEText('hello \xf8 world', _charset='iso-8859-1') 1020 msg = MIMEText('hello there', _charset='us-ascii')
|