HomeSort by relevance Sort by last modified time
    Searched full:subpart (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
iterators.py 22 """Walk over the message tree, yielding each subpart.
29 for subpart in self.get_payload():
30 for subsubpart in subpart.walk():
42 for subpart in msg.walk():
43 payload = subpart.get_payload(decode=decode)
56 for subpart in msg.walk():
57 if subpart.get_content_maintype() == maintype:
58 if subtype is None or subpart.get_content_subtype() == subtype:
59 yield subpart
75 for subpart in msg.get_payload():
    [all...]
generator.py 102 # is to cache any subpart writes into a StringIO. The we write the
103 # headers and the StringIO contents. That way, subpart handlers can
273 # object for the subpart. Extract that object, stringify it, and
301 Walks through all subparts of a message. If the subpart is of main
302 type `text', then it prints the decoded payload of the subpart.
  /external/python/cpython2/Lib/email/
iterators.py 22 """Walk over the message tree, yielding each subpart.
29 for subpart in self.get_payload():
30 for subsubpart in subpart.walk():
42 for subpart in msg.walk():
43 payload = subpart.get_payload(decode=decode)
56 for subpart in msg.walk():
57 if subpart.get_content_maintype() == maintype:
58 if subtype is None or subpart.get_content_subtype() == subtype:
59 yield subpart
75 for subpart in msg.get_payload()
    [all...]
generator.py 102 # is to cache any subpart writes into a StringIO. The we write the
103 # headers and the StringIO contents. That way, subpart handlers can
280 # object for the subpart. Extract that object, stringify it, and
308 Walks through all subparts of a message. If the subpart is of main
309 type `text', then it prints the decoded payload of the subpart.
  /external/python/cpython3/Lib/email/
iterators.py 22 """Walk over the message tree, yielding each subpart.
29 for subpart in self.get_payload():
30 yield from subpart.walk()
41 for subpart in msg.walk():
42 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
73 for subpart in msg.get_payload()
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/email/
iterators.py 22 """Walk over the message tree, yielding each subpart.
29 for subpart in self.get_payload():
30 for subsubpart in subpart.walk():
42 for subpart in msg.walk():
43 payload = subpart.get_payload(decode=decode)
56 for subpart in msg.walk():
57 if subpart.get_content_maintype() == maintype:
58 if subtype is None or subpart.get_content_subtype() == subtype:
59 yield subpart
75 for subpart in msg.get_payload()
    [all...]
generator.py 102 # is to cache any subpart writes into a StringIO. The we write the
103 # headers and the StringIO contents. That way, subpart handlers can
281 # object for the subpart. Extract that object, stringify it, and
309 Walks through all subparts of a message. If the subpart is of main
310 type `text', then it prints the decoded payload of the subpart.
  /prebuilts/gdb/linux-x86/lib/python2.7/email/
iterators.py 22 """Walk over the message tree, yielding each subpart.
29 for subpart in self.get_payload():
30 for subsubpart in subpart.walk():
42 for subpart in msg.walk():
43 payload = subpart.get_payload(decode=decode)
56 for subpart in msg.walk():
57 if subpart.get_content_maintype() == maintype:
58 if subtype is None or subpart.get_content_subtype() == subtype:
59 yield subpart
75 for subpart in msg.get_payload()
    [all...]
generator.py 102 # is to cache any subpart writes into a StringIO. The we write the
103 # headers and the StringIO contents. That way, subpart handlers can
281 # object for the subpart. Extract that object, stringify it, and
309 Walks through all subparts of a message. If the subpart is of main
310 type `text', then it prints the decoded payload of the subpart.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
iterators.py 22 """Walk over the message tree, yielding each subpart.
29 for subpart in self.get_payload():
30 for subsubpart in subpart.walk():
42 for subpart in msg.walk():
43 payload = subpart.get_payload(decode=decode)
56 for subpart in msg.walk():
57 if subpart.get_content_maintype() == maintype:
58 if subtype is None or subpart.get_content_subtype() == subtype:
59 yield subpart
75 for subpart in msg.get_payload()
    [all...]
generator.py 102 # is to cache any subpart writes into a StringIO. The we write the
103 # headers and the StringIO contents. That way, subpart handlers can
281 # object for the subpart. Extract that object, stringify it, and
309 Walks through all subparts of a message. If the subpart is of main
310 type `text', then it prints the decoded payload of the subpart.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
iterators.py 22 """Walk over the message tree, yielding each subpart.
29 for subpart in self.get_payload():
30 for subsubpart in subpart.walk():
42 for subpart in msg.walk():
43 payload = subpart.get_payload(decode=decode)
56 for subpart in msg.walk():
57 if subpart.get_content_maintype() == maintype:
58 if subtype is None or subpart.get_content_subtype() == subtype:
59 yield subpart
75 for subpart in msg.get_payload()
    [all...]
generator.py 102 # is to cache any subpart writes into a StringIO. The we write the
103 # headers and the StringIO contents. That way, subpart handlers can
281 # object for the subpart. Extract that object, stringify it, and
309 Walks through all subparts of a message. If the subpart is of main
310 type `text', then it prints the decoded payload of the subpart.
  /external/python/cpython2/Doc/library/
email.iterators.rst 17 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
email.generator.rst 99 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
  /frameworks/base/core/java/android/provider/
SettingsValidators.java 118 for (String subpart : subparts) {
119 isValidPackageName &= isSubpartValidForPackageName(subpart);
125 private boolean isSubpartValidForPackageName(String subpart) {
126 if (subpart.length() == 0) return false;
127 boolean isValidSubpart = Character.isLetter(subpart.charAt(0));
128 for (int i = 1; i < subpart.length(); i++) {
129 isValidSubpart &= (Character.isLetterOrDigit(subpart.charAt(i))
130 || (subpart.charAt(i) == '_'));
  /external/python/cpython3/Doc/library/
email.iterators.rst 20 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
  /external/icu/icu4c/source/i18n/
decimalformatpattern.cpp 162 // The subpart ranges from 0 to 4: 0=pattern proper, 1=prefix,
163 // 2=suffix, 3=prefix in quote, 4=suffix in quote. Subpart 0 is
167 int32_t subpart = 1, sub0Start = 0, sub0Limit = 0, sub2Limit = 0; local
199 switch (subpart) {
200 case 0: // Pattern proper subpart (between prefix & suffix)
292 // pattern, then jump into suffix subpart.
314 // Transition to suffix subpart
315 subpart = 2; // suffix subpart
321 case 1: // Prefix subpart
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
MimeWriter.py 58 ...use the subwriter's methods to create the subpart...
81 body part at all, e.g. for a subpart of type message/rfc822
121 for a subpart of type message/rfc822 that's (mis)used to store some
  /external/python/cpython2/Lib/
MimeWriter.py 58 ...use the subwriter's methods to create the subpart...
81 body part at all, e.g. for a subpart of type message/rfc822
121 for a subpart of type message/rfc822 that's (mis)used to store some
  /prebuilts/gdb/darwin-x86/lib/python2.7/
MimeWriter.py 58 ...use the subwriter's methods to create the subpart...
81 body part at all, e.g. for a subpart of type message/rfc822
121 for a subpart of type message/rfc822 that's (mis)used to store some
  /prebuilts/gdb/linux-x86/lib/python2.7/
MimeWriter.py 58 ...use the subwriter's methods to create the subpart...
81 body part at all, e.g. for a subpart of type message/rfc822
121 for a subpart of type message/rfc822 that's (mis)used to store some
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
MimeWriter.py 58 ...use the subwriter's methods to create the subpart...
81 body part at all, e.g. for a subpart of type message/rfc822
121 for a subpart of type message/rfc822 that's (mis)used to store some
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
MimeWriter.py 58 ...use the subwriter's methods to create the subpart...
81 body part at all, e.g. for a subpart of type message/rfc822
121 for a subpart of type message/rfc822 that's (mis)used to store some
  /external/curl/tests/libtest/
lib643.c 263 curl_mimepart *subpart = curl_mime_addpart(submime); local
266 a1 = curl_mime_subparts(subpart, mime);

Completed in 1238 milliseconds

1 2 3 4