Home
last modified time | relevance | path

Searched refs:decode_data (Results 1 – 16 of 16) sorted by relevance

/third_party/protobuf/src/google/protobuf/compiler/objectivec/
Dobjectivec_helpers_unittest.cc144 TextFormatDecodeData decode_data; in TEST() local
147 decode_data.AddString(1, "abcdefghIJ", "zbcdefghIJ"); in TEST()
148 decode_data.AddString(3, "abcdefghIJ", "abcdezghIJ"); in TEST()
150 decode_data.AddString(2, "abcdefghIJ", "abcdefghI"); in TEST()
152 decode_data.AddString(4, "abcdefghIJ", "abcdefghIJz"); in TEST()
154 EXPECT_EQ(4, decode_data.num_entries()); in TEST()
165 EXPECT_EQ(expected, decode_data.Data()); in TEST()
169 TextFormatDecodeData decode_data; in TEST() local
171 decode_data.AddString(1, "abcdefghIJ", "abcdefghIJ"); in TEST()
172 decode_data.AddString(3, "abcdefghIJ", "_AbcdefghIJ"); in TEST()
[all …]
/third_party/python/Doc/library/
Dsmtpd.rst37 map=None, enable_SMTPUTF8=False, decode_data=False)
57 ``kwargs['mail_options']`` list. *decode_data* and *enable_SMTPUTF8*
60 *decode_data* specifies whether the data portion of the SMTP transaction
61 should be decoded using UTF-8. When *decode_data* is ``False`` (the
65 in the ``kwargs['mail_options']`` list. *decode_data* and *enable_SMTPUTF8*
78 If the *decode_data* constructor keyword is set to ``True``, the *data*
83 if ``decode_data=True`` was given as an init argument, otherwise
115 The *decode_data* and *enable_SMTPUTF8* constructor parameters, and the
116 *kwargs* parameter to :meth:`process_message` when *decode_data* is
120 *decode_data* is now ``False`` by default.
[all …]
/third_party/python/Lib/test/
Dtest_smtpd.py48 decode_data=True)
50 channel = smtpd.SMTPChannel(server, conn, addr, decode_data=True)
69 decode_data=True)
97 decode_data=True)
99 channel = smtpd.SMTPChannel(server, conn, addr, decode_data=True)
243 server = DummyServer((socket_helper.HOST, 0), ('b', 0), decode_data=True)
245 channel = smtpd.SMTPChannel(server, conn, addr, decode_data=True)
296 decode_data=True)
299 decode_data=True)
313 (socket_helper.HOST, 0), ('b', 0), decode_data=True)
[all …]
Dtest_smtplib.py250 decode_data=True)
1015 decode_data=self._decode_data)
1039 self.serv = SimSMTPServer((HOST, 0), ('nowhere', -1), decode_data=True)
1365 decode_data=self._decode_data,
1391 decode_data=False,
1520 (HOST, 0), ('nowhere', -1), decode_data=True)
Dtest_logging.py832 decode_data=True)
/third_party/python/Lib/
Dsmtpd.py145 map=None, enable_SMTPUTF8=False, decode_data=False): argument
152 self._decode_data = decode_data
153 if enable_SMTPUTF8 and decode_data:
156 if decode_data:
645 enable_SMTPUTF8=False, decode_data=False): argument
650 self._decode_data = decode_data
651 if enable_SMTPUTF8 and decode_data:
/third_party/glib/gio/
Dgdbusauthmechanism.h73 gchar *(*decode_data) (GDBusAuthMechanism *mechanism, member
Dgdbusauthmechanism.c240 …return G_DBUS_AUTH_MECHANISM_GET_CLASS (mechanism)->decode_data (mechanism, data, data_len, out_da… in _g_dbus_auth_mechanism_decode_data()
Dgdbusauthmechanismanon.c98 mechanism_class->decode_data = mechanism_decode_data; in _g_dbus_auth_mechanism_anon_class_init()
Dgdbusauthmechanismexternal.c101 mechanism_class->decode_data = mechanism_decode_data; in _g_dbus_auth_mechanism_external_class_init()
Dgdbusauthmechanismsha1.c161 mechanism_class->decode_data = mechanism_decode_data; in _g_dbus_auth_mechanism_sha1_class_init()
/third_party/python/Misc/NEWS.d/
D3.5.0b1.rst477 smtpd now supports the 8BITMIME extension whenever the new *decode_data*
D3.5.1rc1.rst428 smtpd's SMTPChannel now correctly raises a ValueError if both decode_data
D3.6.0a1.rst906 The default value of the decode_data parameter for smtpd.SMTPChannel and
2715 smtpd's SMTPChannel now correctly raises a ValueError if both decode_data
/third_party/python/Doc/whatsnew/
D3.5.rst1667 accept a *decode_data* keyword argument to determine if the ``DATA`` portion of
1672 reasons, but will change to ``False`` in Python 3.6. If *decode_data* is set
1678 (:rfc:`6152`) if *decode_data* has been set ``True``. If the client
2300 new *decode_data* keyword to :class:`~smtpd.SMTPServer`. The default value is
2301 ``True``, but this default is deprecated. Specify the *decode_data* keyword
D3.6.rst2218 * The *decode_data* argument for the :class:`smtpd.SMTPChannel` and