Home
last modified time | relevance | path

Searched refs:subpart (Results 1 – 20 of 20) sorted by relevance

/external/python/cpython3/Lib/email/
Diterators.py28 for subpart in self.get_payload():
29 yield from subpart.walk()
39 for subpart in msg.walk():
40 payload = subpart.get_payload(decode=decode)
52 for subpart in msg.walk():
53 if subpart.get_content_maintype() == maintype:
54 if subtype is None or subpart.get_content_subtype() == subtype:
55 yield subpart
70 for subpart in msg.get_payload():
71 _structure(subpart, fp, level+1, include_default)
Dmessage.py988 for subpart in part.iter_parts():
989 yield from self._find_body(subpart, preferencelist)
996 for subpart in part.iter_parts():
997 if subpart['content-id'] == start:
998 candidate = subpart
/external/python/cpython2/Lib/email/
Diterators.py28 for subpart in self.get_payload():
29 for subsubpart in subpart.walk():
40 for subpart in msg.walk():
41 payload = subpart.get_payload(decode=decode)
54 for subpart in msg.walk():
55 if subpart.get_content_maintype() == maintype:
56 if subtype is None or subpart.get_content_subtype() == subtype:
57 yield subpart
72 for subpart in msg.get_payload():
73 _structure(subpart, fp, level+1, include_default)
/external/python/cpython2/Doc/library/
Demail.iterators.rst17 string payloads line-by-line. It skips over all the subpart headers, and it
18 skips over any subpart with a payload that isn't a Python string. This is
32 Note that *subtype* is optional; if omitted, then subpart MIME type matching is
36 Thus, by default :func:`typed_subpart_iterator` returns each subpart that has a
Demail.generator.rst99 message. If the subpart is of main type :mimetype:`text`, then it prints the
100 decoded payload of the subpart. Optional *_mangle_from_* and *maxheaderlen* are
103 If the subpart is not of main type :mimetype:`text`, optional *fmt* is a format
Dmimewriter.rst49 useful if you don't need a body part at all, e.g. for a subpart of type
Demail.message.rst524 for each subpart in the payload, otherwise, it will be a list of length 1.
528 represented subpart. However, if the subpart has no
539 iterator in a ``for`` loop; each iteration returns the next subpart.
/external/python/cpython3/Doc/library/
Demail.iterators.rst20 string payloads line-by-line. It skips over all the subpart headers, and it
21 skips over any subpart with a payload that isn't a Python string. This is
35 Note that *subtype* is optional; if omitted, then subpart MIME type matching is
39 Thus, by default :func:`typed_subpart_iterator` returns each subpart that has a
Demail.generator.rst244 Act like :class:`Generator`, except that for any subpart of the message
245 passed to :meth:`Generator.flatten`, if the subpart is of main type
246 :mimetype:`text`, print the decoded payload of the subpart, and if the main
Demail.message.rst442 for each subpart in the payload, otherwise, it will be a list of length 1.
446 represented subpart. If the subpart has no :mailheader:`Content-Type`
480 iterator in a ``for`` loop; each iteration returns the next subpart.
549 part (or subpart of the root part) of any related encountered as a
741 This class represents a subpart of a MIME message. It is identical to
Demail.compat32-message.rst633 for each subpart in the payload, otherwise, it will be a list of length 1.
637 represented subpart. However, if the subpart has no
657 iterator in a ``for`` loop; each iteration returns the next subpart.
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/text/webvtt/
DWebvttParserUtil.java70 for (String subpart : subparts) { in parseTimestampUs()
71 value = (value * 60) + Long.parseLong(subpart); in parseTimestampUs()
/external/python/cpython2/Lib/email/test/
Dtest_email_renamed.py145 subpart = msg.get_payload(1)
146 eq(subpart.get_filename(), 'dingusfish.gif')
1341 for subpart in msg1.get_payload():
1342 eq(subpart.get_content_type(), 'message/external-body')
1343 eq(len(subpart.get_payload()), 1)
1344 subsubpart = subpart.get_payload(0)
1622 subpart = payload[0]
1623 self.assertIs(subpart, m)
1624 eq(subpart['subject'], subject)
1675 subpart = msg.get_payload(0)
[all …]
Dtest_email.py150 subpart = msg.get_payload(1)
151 eq(subpart.get_filename(), 'dingusfish.gif')
1406 for subpart in msg1.get_payload():
1407 eq(subpart.get_content_type(), 'message/external-body')
1408 eq(len(subpart.get_payload()), 1)
1409 subsubpart = subpart.get_payload(0)
1703 subpart = payload[0]
1704 self.assertIs(subpart, m)
1705 eq(subpart['subject'], subject)
1756 subpart = msg.get_payload(0)
[all …]
/external/curl/lib/
Dmime.c1922 curl_mimepart *subpart; in Curl_mime_prepare_headers() local
1927 for(subpart = mime->firstpart; subpart; subpart = subpart->nextpart) { in Curl_mime_prepare_headers()
1928 ret = Curl_mime_prepare_headers(subpart, NULL, disposition, strategy); in Curl_mime_prepare_headers()
1946 curl_mimepart *subpart; in Curl_mime_unpause() local
1948 for(subpart = mime->firstpart; subpart; subpart = subpart->nextpart) in Curl_mime_unpause()
1949 Curl_mime_unpause(subpart); in Curl_mime_unpause()
/external/curl/tests/libtest/
Dlib643.c270 curl_mimepart *subpart = curl_mime_addpart(submime); in cyclic_add() local
273 a1 = curl_mime_subparts(subpart, mime); in cyclic_add()
/external/python/cpython3/Lib/test/test_email/
Dtest_email.py164 subpart = msg.get_payload(1)
165 eq(subpart.get_filename(), 'dingusfish.gif')
2026 for subpart in msg1.get_payload():
2027 eq(subpart.get_content_type(), 'message/external-body')
2028 eq(len(subpart.get_payload()), 1)
2029 subsubpart = subpart.get_payload(0)
2454 subpart = payload[0]
2455 self.assertIs(subpart, m)
2456 eq(subpart['subject'], subject)
2506 subpart = msg.get_payload(0)
[all …]
/external/catch2/docs/
Dcontributing.md108 - this placeholder is used when you need to tag a subpart of something,
/external/libogg/doc/
Drfc3533.txt709 (Ogg) packet: A subpart of a logical bitstream that is created by the
/external/kotlinx.coroutines/benchmarks/src/jmh/resources/
Dospd.txt.gz