HomeSort by relevance Sort by last modified time
    Searched refs:_subtype (Results 1 - 25 of 26) sorted by null

1 2

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/mime/
image.py 20 def __init__(self, _imagedata, _subtype=None,
27 Otherwise, you can specify the specific image subtype via the _subtype
41 if _subtype is None:
42 _subtype = imghdr.what(None, _imagedata)
43 if _subtype is None:
45 MIMENonMultipart.__init__(self, 'image', _subtype, **_params)
application.py 16 def __init__(self, _data, _subtype='octet-stream',
22 _subtype is the MIME content type subtype, defaulting to
32 if _subtype is None:
34 MIMENonMultipart.__init__(self, 'application', _subtype, **_params)
base.py 17 def __init__(self, _maintype, _subtype, **_params):
20 The Content-Type: header is taken from the _maintype and _subtype
25 ctype = '%s/%s' % (_maintype, _subtype)
audio.py 47 def __init__(self, _audiodata, _subtype=None,
55 _subtype parameter. If _subtype is not given, and no subtype can be
69 if _subtype is None:
70 _subtype = _whatsnd(_audiodata)
71 if _subtype is None:
73 MIMENonMultipart.__init__(self, 'audio', _subtype, **_params)
message.py 18 def __init__(self, _msg, _subtype='rfc822'):
24 Optional _subtype defines the subtype of the contained message. The
28 MIMENonMultipart.__init__(self, 'message', _subtype)
multipart.py 17 def __init__(self, _subtype='mixed', boundary=None, _subparts=None,
24 _subtype is the subtype of the multipart content type, defaulting to
37 MIMEBase.__init__(self, 'multipart', _subtype, **_params)
text.py 18 def __init__(self, _text, _subtype='plain', _charset='us-ascii'):
23 _subtype is the MIME sub content type, defaulting to "plain".
29 MIMENonMultipart.__init__(self, 'text', _subtype,
  /external/python/cpython2/Lib/email/mime/
image.py 20 def __init__(self, _imagedata, _subtype=None,
27 Otherwise, you can specify the specific image subtype via the _subtype
41 if _subtype is None:
42 _subtype = imghdr.what(None, _imagedata)
43 if _subtype is None:
45 MIMENonMultipart.__init__(self, 'image', _subtype, **_params)
application.py 16 def __init__(self, _data, _subtype='octet-stream',
22 _subtype is the MIME content type subtype, defaulting to
32 if _subtype is None:
34 MIMENonMultipart.__init__(self, 'application', _subtype, **_params)
base.py 17 def __init__(self, _maintype, _subtype, **_params):
20 The Content-Type: header is taken from the _maintype and _subtype
25 ctype = '%s/%s' % (_maintype, _subtype)
audio.py 47 def __init__(self, _audiodata, _subtype=None,
55 _subtype parameter. If _subtype is not given, and no subtype can be
69 if _subtype is None:
70 _subtype = _whatsnd(_audiodata)
71 if _subtype is None:
73 MIMENonMultipart.__init__(self, 'audio', _subtype, **_params)
message.py 18 def __init__(self, _msg, _subtype='rfc822'):
24 Optional _subtype defines the subtype of the contained message. The
28 MIMENonMultipart.__init__(self, 'message', _subtype)
multipart.py 17 def __init__(self, _subtype='mixed', boundary=None, _subparts=None,
24 _subtype is the subtype of the multipart content type, defaulting to
37 MIMEBase.__init__(self, 'multipart', _subtype, **_params)
text.py 18 def __init__(self, _text, _subtype='plain', _charset='us-ascii'):
23 _subtype is the MIME sub content type, defaulting to "plain".
29 MIMENonMultipart.__init__(self, 'text', _subtype,
  /external/python/cpython3/Lib/email/mime/
image.py 20 def __init__(self, _imagedata, _subtype=None,
27 Otherwise, you can specify the specific image subtype via the _subtype
41 if _subtype is None:
42 _subtype = imghdr.what(None, _imagedata)
43 if _subtype is None:
45 MIMENonMultipart.__init__(self, 'image', _subtype, policy=policy,
audio.py 47 def __init__(self, _audiodata, _subtype=None,
55 _subtype parameter. If _subtype is not given, and no subtype can be
69 if _subtype is None:
70 _subtype = _whatsnd(_audiodata)
71 if _subtype is None:
73 MIMENonMultipart.__init__(self, 'audio', _subtype, policy=policy,
application.py 16 def __init__(self, _data, _subtype='octet-stream',
22 _subtype is the MIME content type subtype, defaulting to
32 if _subtype is None:
34 MIMENonMultipart.__init__(self, 'application', _subtype, policy=policy,
base.py 19 def __init__(self, _maintype, _subtype, *, policy=None, **_params):
22 The Content-Type: header is taken from the _maintype and _subtype
29 ctype = '%s/%s' % (_maintype, _subtype)
multipart.py 17 def __init__(self, _subtype='mixed', boundary=None, _subparts=None,
25 _subtype is the subtype of the multipart content type, defaulting to
38 MIMEBase.__init__(self, 'multipart', _subtype, policy=policy, **_params)
message.py 18 def __init__(self, _msg, _subtype='rfc822', *, policy=None):
24 Optional _subtype defines the subtype of the contained message. The
28 MIMENonMultipart.__init__(self, 'message', _subtype, policy=policy)
text.py 18 def __init__(self, _text, _subtype='plain', _charset=None, *, policy=None):
23 _subtype is the MIME sub content type, defaulting to "plain".
40 MIMENonMultipart.__init__(self, 'text', _subtype, policy=policy,
  /external/python/cpython2/Doc/includes/
email-dir.py 81 msg = MIMEText(fp.read(), _subtype=subtype)
85 msg = MIMEImage(fp.read(), _subtype=subtype)
89 msg = MIMEAudio(fp.read(), _subtype=subtype)
  /external/clang/tools/scan-view/share/
Reporter.py 96 msg = MIMEText(fp.read(), _subtype=subtype)
129 msg.attach(MIMEText(mainMsg, _subtype='text/plain'))
  /external/u-boot/include/
efi_loader.h 388 #define EFI_DP_TYPE(_dp, _type, _subtype) \
390 ((_dp)->sub_type == DEVICE_PATH_SUB_TYPE_##_subtype))
  /external/v8/src/inspector/
injected-script-source.js 294 var subtype = this._subtype(object);
563 _subtype: function(obj)
591 var subtype = this._subtype(obj);
773 this.subtype = injectedScript._subtype(object);
782 var subtype = injectedScript._subtype(object);
    [all...]

Completed in 1623 milliseconds

1 2