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

1 2

  /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...]
  /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...]
  /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...]
message.py     [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...]
  /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...]
  /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...]
  /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...]
  /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/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...]
  /external/curl/tests/libtest/
lib643.c 263 curl_mimepart *subpart = curl_mime_addpart(submime); local
266 a1 = curl_mime_subparts(subpart, mime);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/test/
test_email.py 144 subpart = msg.get_payload(1)
145 eq(subpart.get_filename(), 'dingusfish.gif')
210 # Subpart 1 is 7bit encoded
213 # Subpart 2 is quopri
216 # Subpart 3 is base64
219 # Subpart 4 is base64 with a trailing newline, which
223 # Subpart 5 has no Content-Transfer-Encoding: header.
    [all...]
test_email_renamed.py 145 subpart = msg.get_payload(1)
146 eq(subpart.get_filename(), 'dingusfish.gif')
188 # Subpart 1 is 7bit encoded
191 # Subpart 2 is quopri
194 # Subpart 3 is base64
197 # Subpart 4 is base64 with a trailing newline, which
201 # Subpart 5 has no Content-Transfer-Encoding: header.
    [all...]
  /external/python/cpython2/Lib/email/test/
test_email.py 150 subpart = msg.get_payload(1)
151 eq(subpart.get_filename(), 'dingusfish.gif')
216 # Subpart 1 is 7bit encoded
219 # Subpart 2 is quopri
222 # Subpart 3 is base64
225 # Subpart 4 is base64 with a trailing newline, which
229 # Subpart 5 has no Content-Transfer-Encoding: header.
    [all...]
test_email_renamed.py 145 subpart = msg.get_payload(1)
146 eq(subpart.get_filename(), 'dingusfish.gif')
188 # Subpart 1 is 7bit encoded
191 # Subpart 2 is quopri
194 # Subpart 3 is base64
197 # Subpart 4 is base64 with a trailing newline, which
201 # Subpart 5 has no Content-Transfer-Encoding: header.
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/email/test/
test_email.py 145 subpart = msg.get_payload(1)
146 eq(subpart.get_filename(), 'dingusfish.gif')
211 # Subpart 1 is 7bit encoded
214 # Subpart 2 is quopri
217 # Subpart 3 is base64
220 # Subpart 4 is base64 with a trailing newline, which
224 # Subpart 5 has no Content-Transfer-Encoding: header.
    [all...]
test_email_renamed.py 145 subpart = msg.get_payload(1)
146 eq(subpart.get_filename(), 'dingusfish.gif')
188 # Subpart 1 is 7bit encoded
191 # Subpart 2 is quopri
194 # Subpart 3 is base64
197 # Subpart 4 is base64 with a trailing newline, which
201 # Subpart 5 has no Content-Transfer-Encoding: header.
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/email/test/
test_email.py 145 subpart = msg.get_payload(1)
146 eq(subpart.get_filename(), 'dingusfish.gif')
211 # Subpart 1 is 7bit encoded
214 # Subpart 2 is quopri
217 # Subpart 3 is base64
220 # Subpart 4 is base64 with a trailing newline, which
224 # Subpart 5 has no Content-Transfer-Encoding: header.
    [all...]
test_email_renamed.py 145 subpart = msg.get_payload(1)
146 eq(subpart.get_filename(), 'dingusfish.gif')
188 # Subpart 1 is 7bit encoded
191 # Subpart 2 is quopri
194 # Subpart 3 is base64
197 # Subpart 4 is base64 with a trailing newline, which
201 # Subpart 5 has no Content-Transfer-Encoding: header.
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/
test_email.py 145 subpart = msg.get_payload(1)
146 eq(subpart.get_filename(), 'dingusfish.gif')
211 # Subpart 1 is 7bit encoded
214 # Subpart 2 is quopri
217 # Subpart 3 is base64
220 # Subpart 4 is base64 with a trailing newline, which
224 # Subpart 5 has no Content-Transfer-Encoding: header.
    [all...]
test_email_renamed.py 145 subpart = msg.get_payload(1)
146 eq(subpart.get_filename(), 'dingusfish.gif')
188 # Subpart 1 is 7bit encoded
191 # Subpart 2 is quopri
194 # Subpart 3 is base64
197 # Subpart 4 is base64 with a trailing newline, which
201 # Subpart 5 has no Content-Transfer-Encoding: header.
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/
test_email.py 145 subpart = msg.get_payload(1)
146 eq(subpart.get_filename(), 'dingusfish.gif')
211 # Subpart 1 is 7bit encoded
214 # Subpart 2 is quopri
217 # Subpart 3 is base64
220 # Subpart 4 is base64 with a trailing newline, which
224 # Subpart 5 has no Content-Transfer-Encoding: header.
    [all...]
test_email_renamed.py 145 subpart = msg.get_payload(1)
146 eq(subpart.get_filename(), 'dingusfish.gif')
188 # Subpart 1 is 7bit encoded
191 # Subpart 2 is quopri
194 # Subpart 3 is base64
197 # Subpart 4 is base64 with a trailing newline, which
201 # Subpart 5 has no Content-Transfer-Encoding: header.
    [all...]
  /external/python/cpython3/Lib/test/test_email/
test_email.py 167 subpart = msg.get_payload(1)
168 eq(subpart.get_filename(), 'dingusfish.gif')
244 # Subpart 1 is 7bit encoded
247 # Subpart 2 is quopri
250 # Subpart 3 is base64
253 # Subpart 4 is base64 with a trailing newline, which
257 # Subpart 5 has no Content-Transfer-Encoding: header.
    [all...]
  /external/curl/lib/
mime.c 1809 curl_mimepart *subpart; local
    [all...]

Completed in 1069 milliseconds

1 2