Home
last modified time | relevance | path

Searched refs:get_body (Results 1 – 8 of 8) sorted by relevance

/third_party/python/Lib/test/test_email/
Dtest_message.py456 self.assertEqual(m.get_body(), first(expected))
457 self.assertEqual(m.get_body(preferencelist=(
460 self.assertEqual(m.get_body(preferencelist=('related', 'html')),
462 self.assertEqual(m.get_body(preferencelist=('related', 'plain')),
464 self.assertEqual(m.get_body(preferencelist=('html', 'plain')),
466 self.assertEqual(m.get_body(preferencelist=['related']),
468 self.assertEqual(m.get_body(preferencelist=['html']), expected[html])
469 self.assertEqual(m.get_body(preferencelist=['plain']), expected[plain])
470 self.assertEqual(m.get_body(preferencelist=('plain', 'html')),
472 self.assertEqual(m.get_body(preferencelist=('plain', 'related')),
[all …]
/third_party/python/Doc/includes/
Demail-read-alternative.py28 simplest = msg.get_body(preferencelist=('plain', 'html'))
37 richest = msg.get_body()
50 body = richest.get_body(preferencelist=('html'))
/third_party/cef/libcef_dll/ctocpp/
Ddomdocument_ctocpp.cc58 if (CEF_MEMBER_MISSING(_struct, get_body)) in GetBody()
64 cef_domnode_t* _retval = _struct->get_body(_struct); in GetBody()
/third_party/cef/include/capi/
Dcef_dom_capi.h98 struct _cef_domnode_t*(CEF_CALLBACK* get_body)(
/third_party/cef/libcef_dll/cpptoc/
Ddomdocument_cpptoc.cc281 GetStruct()->get_body = domdocument_get_body; in CefDOMDocumentCppToC()
/third_party/python/Doc/library/
Demail.message.rst536 .. method:: get_body(preferencelist=('related', 'html', 'plain'))
546 ``get_body`` method is called.
566 with the object on which ``get_body`` is called, calling ``get_body`` on
571 are of type ``text/plain``, which may occasionally cause ``get_body`` to
Demail.parser.rst26 such as :meth:`~email.message.EmailMessage.get_body`,
/third_party/python/Lib/email/
Dmessage.py1006 def get_body(self, preferencelist=('related', 'html', 'plain')): member in MIMEPart