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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/data/
msg_23.txt 2 Content-Type: multipart/mixed; boundary="BOUNDARY"
4 --BOUNDARY
8 --BOUNDARY--
msg_24.txt 1 Content-Type: multipart/mixed; boundary="BOUNDARY"
7 --BOUNDARY
10 --BOUNDARY--
msg_31.txt 3 Content-Type: multipart/mixed; boundary=BOUNDARY_
5 --BOUNDARY
10 --BOUNDARY
15 --BOUNDARY--
msg_08.txt 6 Content-Type: multipart/mixed; boundary="BOUNDARY"
8 --BOUNDARY
12 --BOUNDARY
16 --BOUNDARY
20 --BOUNDARY
24 --BOUNDARY--
msg_09.txt 6 Content-Type: multipart/mixed; boundary="BOUNDARY"
8 --BOUNDARY
12 --BOUNDARY
16 --BOUNDARY
20 --BOUNDARY
24 --BOUNDARY--
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--
msg_10.txt 6 Content-Type: multipart/mixed; boundary="BOUNDARY"
8 --BOUNDARY
14 --BOUNDARY
20 --BOUNDARY
27 --BOUNDARY
34 --BOUNDARY
39 --BOUNDARY--
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/data/
msg_23.txt 2 Content-Type: multipart/mixed; boundary="BOUNDARY"
4 --BOUNDARY
8 --BOUNDARY--
msg_24.txt 1 Content-Type: multipart/mixed; boundary="BOUNDARY"
7 --BOUNDARY
10 --BOUNDARY--
msg_31.txt 3 Content-Type: multipart/mixed; boundary=BOUNDARY_
5 --BOUNDARY
10 --BOUNDARY
15 --BOUNDARY--
msg_08.txt 6 Content-Type: multipart/mixed; boundary="BOUNDARY"
8 --BOUNDARY
12 --BOUNDARY
16 --BOUNDARY
20 --BOUNDARY
24 --BOUNDARY--
msg_09.txt 6 Content-Type: multipart/mixed; boundary="BOUNDARY"
8 --BOUNDARY
12 --BOUNDARY
16 --BOUNDARY
20 --BOUNDARY
24 --BOUNDARY--
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--
  /external/icu/icu4c/source/samples/break/
break.cpp 44 void printEachForward( BreakIterator& boundary)
46 int32_t start = boundary.first();
47 for (int32_t end = boundary.next();
49 start = end, end = boundary.next())
51 printTextRange( boundary, start, end );
56 void printEachBackward( BreakIterator& boundary)
58 int32_t end = boundary.last();
59 for (int32_t start = boundary.previous();
61 end = start, start = boundary.previous())
63 printTextRange( boundary, start, end )
96 BreakIterator* boundary; local
    [all...]
ubreak.c 33 void printEachForward( UBreakIterator* boundary, UChar* str) {
35 int32_t start = ubrk_first(boundary);
36 for (end = ubrk_next(boundary); end != UBRK_DONE; start = end, end =
37 ubrk_next(boundary)) {
44 void printEachBackward( UBreakIterator* boundary, UChar* str) {
46 int32_t end = ubrk_last(boundary);
47 for (start = ubrk_previous(boundary); start != UBRK_DONE; end = start,
48 start =ubrk_previous(boundary)) {
54 void printFirst(UBreakIterator* boundary, UChar* str) {
56 int32_t start = ubrk_first(boundary);
81 UBreakIterator *boundary; local
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/util/
MathUtils.java 16 * it will return the closest boundary from the range. The ordering of the boundary values does
20 * @param a First boundary range value.
21 * @param b Second boundary range value.
22 * @return The passed in value if it is within the range, otherwise the closest boundary value.
34 * it will return the closest boundary from the range. The ordering of the boundary values does
38 * @param a First boundary range value.
39 * @param b Second boundary range value.
40 * @return The passed in value if it is within the range, otherwise the closest boundary value
    [all...]
  /bionic/libc/bionic/
jemalloc_wrapper.cpp 36 // The man page for memalign says it fails if boundary is not a power of 2,
39 void* je_memalign_round_up_boundary(size_t boundary, size_t size) {
40 if (boundary != 0) {
41 if (!powerof2(boundary)) {
42 boundary = BIONIC_ROUND_UP_POWER_OF_2(boundary);
45 boundary = 1;
47 return je_memalign(boundary, size);

Completed in 282 milliseconds

1 2 3 4 5 6 7 8 91011>>