HomeSort by relevance Sort by last modified time
    Searched full:_subtype (Results 1 - 19 of 19) 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)
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)
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,
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)
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)
  /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)
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)
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,
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)
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)
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptSource.js 744 if (!object || this._subtype(object) !== "node")
799 _subtype: function(obj)
837 var subtype = this._subtype(obj);
927 var subtype = injectedScript._subtype(object);
    [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/clang/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/devtools/front_end/
RemoteObject.js 43 this._subtype = subtype;
144 return this._subtype;
  /external/mdnsresponder/mDNSShared/
dns_sd.h     [all...]

Completed in 4317 milliseconds