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

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/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,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/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/lldb/utils/test/
ras.py 142 msg = MIMEText(fp.read(), _subtype=subtype)
146 msg = MIMEImage(fp.read(), _subtype=subtype)
150 msg = MIMEAudio(fp.read(), _subtype=subtype)
  /external/clang/tools/scan-view/
Reporter.py 96 msg = MIMEText(fp.read(), _subtype=subtype)
129 msg.attach(MIMEText(mainMsg, _subtype='text/plain'))
  /prebuilts/misc/darwin-x86/analyzer/tools/scan-view/
Reporter.py 96 msg = MIMEText(fp.read(), _subtype=subtype)
129 msg.attach(MIMEText(mainMsg, _subtype='text/plain'))
  /prebuilts/misc/linux-x86/analyzer/tools/scan-view/
Reporter.py 96 msg = MIMEText(fp.read(), _subtype=subtype)
129 msg.attach(MIMEText(mainMsg, _subtype='text/plain'))
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptSource.js 916 if (!object || this._subtype(object) !== "node")
971 _subtype: function(obj)
    [all...]
  /external/jmdns/src/javax/jmdns/impl/
ServiceInfoImpl.java 49 private String _subtype; field in class:ServiceInfoImpl
192 this._subtype = map.get(Fields.Subtype);
218 this._subtype = info.getSubtype();
729 return (_subtype != null ? _subtype : "");
914 _subtype = rec.getSubtype();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
RemoteObject.js 220 this._subtype = subtype;
256 return this._subtype;

Completed in 1262 milliseconds