/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/test/data/ |
msg_12.txt | 6 Content-Type: multipart/mixed; boundary="BOUNDARY"
8 --BOUNDARY
12 --BOUNDARY
16 --BOUNDARY
17 Content-Type: multipart/mixed; boundary="ANOTHER"
28 --BOUNDARY
32 --BOUNDARY
36 --BOUNDARY--
|
msg_12a.txt | 6 Content-Type: multipart/mixed; boundary="BOUNDARY"
8 --BOUNDARY
12 --BOUNDARY
16 --BOUNDARY
17 Content-Type: multipart/mixed; boundary="ANOTHER"
30 --BOUNDARY
34 --BOUNDARY
38 --BOUNDARY--
|
msg_21.txt | 4 Content-Type: multipart/mixed; boundary="BOUNDARY"
7 --BOUNDARY
13 --BOUNDARY
19 --BOUNDARY--
|
msg_28.txt | 3 Content-Type: multipart/digest; boundary=BOUNDARY
5 --BOUNDARY
15 --BOUNDARY
25 --BOUNDARY--
|
msg_30.txt | 3 Content-Type: multipart/digest; boundary=BOUNDARY
5 --BOUNDARY
14 --BOUNDARY
23 --BOUNDARY--
|
/prebuilts/gdb/darwin-x86/lib/python2.7/email/test/data/ |
msg_12.txt | 6 Content-Type: multipart/mixed; boundary="BOUNDARY" 8 --BOUNDARY 12 --BOUNDARY 16 --BOUNDARY 17 Content-Type: multipart/mixed; boundary="ANOTHER" 28 --BOUNDARY 32 --BOUNDARY 36 --BOUNDARY--
|
msg_12a.txt | 6 Content-Type: multipart/mixed; boundary="BOUNDARY" 8 --BOUNDARY 12 --BOUNDARY 16 --BOUNDARY 17 Content-Type: multipart/mixed; boundary="ANOTHER" 30 --BOUNDARY 34 --BOUNDARY 38 --BOUNDARY--
|
msg_21.txt | 4 Content-Type: multipart/mixed; boundary="BOUNDARY" 7 --BOUNDARY 13 --BOUNDARY 19 --BOUNDARY--
|
msg_28.txt | 3 Content-Type: multipart/digest; boundary=BOUNDARY 5 --BOUNDARY 15 --BOUNDARY 25 --BOUNDARY--
|
msg_30.txt | 3 Content-Type: multipart/digest; boundary=BOUNDARY 5 --BOUNDARY 14 --BOUNDARY 23 --BOUNDARY--
|
/prebuilts/gdb/linux-x86/lib/python2.7/email/test/data/ |
msg_12.txt | 6 Content-Type: multipart/mixed; boundary="BOUNDARY" 8 --BOUNDARY 12 --BOUNDARY 16 --BOUNDARY 17 Content-Type: multipart/mixed; boundary="ANOTHER" 28 --BOUNDARY 32 --BOUNDARY 36 --BOUNDARY--
|
msg_12a.txt | 6 Content-Type: multipart/mixed; boundary="BOUNDARY" 8 --BOUNDARY 12 --BOUNDARY 16 --BOUNDARY 17 Content-Type: multipart/mixed; boundary="ANOTHER" 30 --BOUNDARY 34 --BOUNDARY 38 --BOUNDARY--
|
msg_21.txt | 4 Content-Type: multipart/mixed; boundary="BOUNDARY" 7 --BOUNDARY 13 --BOUNDARY 19 --BOUNDARY--
|
msg_28.txt | 3 Content-Type: multipart/digest; boundary=BOUNDARY 5 --BOUNDARY 15 --BOUNDARY 25 --BOUNDARY--
|
msg_30.txt | 3 Content-Type: multipart/digest; boundary=BOUNDARY 5 --BOUNDARY 14 --BOUNDARY 23 --BOUNDARY--
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/data/ |
msg_12.txt | 6 Content-Type: multipart/mixed; boundary="BOUNDARY" 8 --BOUNDARY 12 --BOUNDARY 16 --BOUNDARY 17 Content-Type: multipart/mixed; boundary="ANOTHER" 28 --BOUNDARY 32 --BOUNDARY 36 --BOUNDARY--
|
msg_12a.txt | 6 Content-Type: multipart/mixed; boundary="BOUNDARY" 8 --BOUNDARY 12 --BOUNDARY 16 --BOUNDARY 17 Content-Type: multipart/mixed; boundary="ANOTHER" 30 --BOUNDARY 34 --BOUNDARY 38 --BOUNDARY--
|
msg_21.txt | 4 Content-Type: multipart/mixed; boundary="BOUNDARY" 7 --BOUNDARY 13 --BOUNDARY 19 --BOUNDARY--
|
msg_28.txt | 3 Content-Type: multipart/digest; boundary=BOUNDARY 5 --BOUNDARY 15 --BOUNDARY 25 --BOUNDARY--
|
msg_30.txt | 3 Content-Type: multipart/digest; boundary=BOUNDARY 5 --BOUNDARY 14 --BOUNDARY 23 --BOUNDARY--
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/data/ |
msg_12.txt | 6 Content-Type: multipart/mixed; boundary="BOUNDARY" 8 --BOUNDARY 12 --BOUNDARY 16 --BOUNDARY 17 Content-Type: multipart/mixed; boundary="ANOTHER" 28 --BOUNDARY 32 --BOUNDARY 36 --BOUNDARY--
|
msg_12a.txt | 6 Content-Type: multipart/mixed; boundary="BOUNDARY" 8 --BOUNDARY 12 --BOUNDARY 16 --BOUNDARY 17 Content-Type: multipart/mixed; boundary="ANOTHER" 30 --BOUNDARY 34 --BOUNDARY 38 --BOUNDARY--
|
msg_21.txt | 4 Content-Type: multipart/mixed; boundary="BOUNDARY" 7 --BOUNDARY 13 --BOUNDARY 19 --BOUNDARY--
|
/external/icu/icu4c/source/samples/break/ |
break.cpp | 50 void printEachForward( BreakIterator& boundary) 52 int32_t start = boundary.first(); 53 for (int32_t end = boundary.next(); 55 start = end, end = boundary.next()) 57 printTextRange( boundary, start, end ); 62 void printEachBackward( BreakIterator& boundary) 64 int32_t end = boundary.last(); 65 for (int32_t start = boundary.previous(); 67 end = start, start = boundary.previous()) 69 printTextRange( boundary, start, end ) 102 BreakIterator* boundary; local [all...] |
ubreak.c | 39 void printEachForward( UBreakIterator* boundary, UChar* str) { 41 int32_t start = ubrk_first(boundary); 42 for (end = ubrk_next(boundary); end != UBRK_DONE; start = end, end = 43 ubrk_next(boundary)) { 50 void printEachBackward( UBreakIterator* boundary, UChar* str) { 52 int32_t end = ubrk_last(boundary); 53 for (start = ubrk_previous(boundary); start != UBRK_DONE; end = start, 54 start =ubrk_previous(boundary)) { 60 void printFirst(UBreakIterator* boundary, UChar* str) { 62 int32_t start = ubrk_first(boundary); 87 UBreakIterator *boundary; local [all...] |