Home
last modified time | relevance | path

Searched refs:set_content (Results 1 – 22 of 22) sorted by relevance

/third_party/python/Lib/test/test_email/
Dtest_contentmanager.py85 cm.set_content(m, msg_obj, foo='bar')
102 cm.set_content(m, msg_obj)
111 cm.set_content(m, msg_obj)
118 cm.set_content(m, 'test')
128 m.set_content('xyz', content_manager=cm)
296 raw_data_manager.set_content(m, content)
309 raw_data_manager.set_content(m, content)
322 raw_data_manager.set_content(m, content, subtype='html')
335 raw_data_manager.set_content(m, content, charset='latin-1')
349 raw_data_manager.set_content(m, content)
[all …]
Dtest_message.py502 def set_content(self, msg, *args, **kw): member in TestEmailMessageBase._TestContentManager
528 m.set_content(content_manager=cm)
532 m.set_content('foo', content_manager=cm, bar=1, k=2)
541 m.set_content()
545 m.set_content('foo', bar=1, k=2)
665 def set_content(self, msg, content, *args, **kw): member in TestEmailMessageBase._TestSetContentManager
699 def set_content(self, msg, content, *args, **kw): member in TestEmailMessageBase._TestSetRaisingContentManager
742 m.set_content('arbitrary text as main part')
757 m.set_content(content_manager=cm)
761 def set_content(self, msg, *args, **kw): member in TestEmailMessage._MIME_Version_adding_CM
[all …]
Dtest_inversion.py70 msg.set_content(payload, **kw)
Dtest_generator.py279 msg.set_content("oh là là, know what I mean, know what I mean?")
300 msg.set_content("oh boy, know what I mean, know what I mean?")
/third_party/python/Doc/library/
Demail.contentmanager.rst21 well as the ``get_content`` and ``set_content`` dispatch methods.
43 .. method:: set_content(msg, obj, *args, **kw)
83 matching *typekey* is passed to :meth:`set_content`. For the possible
84 values of *typekey*, see :meth:`set_content`.
104 manually decode it, ``set_content`` provides a rich set of options for
119 .. method:: set_content(msg, <'str'>, subtype="plain", charset='utf-8', \
123 set_content(msg, <'bytes'>, maintype, subtype, cte="base64", \
126 set_content(msg, <'EmailMessage'>, cte=None, \
168 The ``EmailMessage`` object as modified by ``set_content`` is
Demail.encoders.rst13 the :meth:`~email.message.EmailMessage.set_content` method.
Demail.message.rst607 .. method:: set_content(*args, content_manager=None, **kw)
609 Call the :meth:`~email.contentmanager.ContentManager.set_content` method
649 object, pass all of the arguments to its :meth:`set_content` method,
662 object, pass all of the arguments to its :meth:`set_content` method, and
674 pass all of the arguments to its :meth:`set_content` method, and
743 added when :meth:`~EmailMessage.set_content` is called, since sub-parts do
Demail.compat32-message.rst184 replaced by :meth:`~email.message.EmailMessage.set_content` and the
239 replaced by :meth:`~email.message.EmailMessage.set_content`.
269 :meth:`email.emailmessage.EmailMessage.set_content` method.
Demail.policy.rst430 An object with at least two methods: get_content and set_content. When
432 :meth:`~email.message.EmailMessage.set_content` method of an
Demail.parser.rst14 using :meth:`~email.message.EmailMessage.set_content` and related methods, or
/third_party/boost/boost/log/detail/
Dthread_specific.hpp53 BOOST_LOG_API void set_content(void* value) const;
102 thread_specific_base::set_content(cast.as_pointer); in set()
/third_party/python/Doc/includes/
Demail-simple.py11 msg.set_content(fp.read())
Demail-alternative.py15 msg.set_content("""\
/third_party/boost/libs/log/src/
Dthread_specific.cpp55 void thread_specific_base::set_content(void* value) const in set_content() function in boost::aux::thread_specific_base
274 void thread_specific_base::set_content(void* value) const in set_content() function in boost::aux::thread_specific_base
/third_party/python/Lib/email/
Dmessage.py1098 def set_content(self, *args, content_manager=None, **kw): member in MIMEPart
1101 content_manager.set_content(self, *args, **kw)
1144 part.set_content(*args, **kw)
1170 def set_content(self, *args, **kw): member in EmailMessage
1171 super().set_content(*args, **kw)
Dcontentmanager.py30 def set_content(self, msg, obj, *args, **kw): member in ContentManager
/third_party/protobuf/src/google/protobuf/compiler/
Dplugin.pb.h709 void set_content(const std::string& value);
710 void set_content(std::string&& value);
711 void set_content(const char* value);
712 void set_content(const char* value, size_t size);
1567 inline void CodeGeneratorResponse_File::set_content(const std::string& value) { in set_content() function
1582 inline void CodeGeneratorResponse_File::set_content(std::string&& value) { in set_content() function
1588 inline void CodeGeneratorResponse_File::set_content(const char* value) { in set_content() function
1595 inline void CodeGeneratorResponse_File::set_content(const char* value, in set_content() function
/third_party/protobuf/src/google/protobuf/util/internal/
Dprotostream_objectwriter_test.cc207 book.set_content(content); in TEST_P()
1970 book.set_content("Hello World!"); in TEST_P()
2007 book.set_content("Hello World!"); in TEST_P()
/third_party/python/Misc/NEWS.d/
D3.10.0rc2.rst404 Fix :meth:`email.message.EmailMessage.set_content` when called with binary
D3.10.0a1.rst2048 Fixed email.contentmanager to allow set_content() to set a null string.
/third_party/python/Lib/logging/
Dhandlers.py1063 msg.set_content(self.format(record))
/third_party/python/Lib/test/
Dtest_smtplib.py1464 msg.set_content("oh là là, know what I mean, know what I mean?\n\n")