/external/icu4c/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/bison/src/ |
location.h | 26 /* A boundary between two characters. */ 29 /* The name of the file that contains the boundary. */ 32 /* The (origin-1) line that contains the boundary. 36 /* The (origin-1) column just after the boundary. This is neither a 41 } boundary; typedef in typeref:struct:__anon1416 45 equal_boundaries (boundary a, boundary b) 55 /* Boundary just before the location starts. */ 56 boundary start; 58 /* Boundary just after the location ends. * [all...] |
/external/nist-sip/java/gov/nist/javax/sip/message/ |
ContentImpl.java | 17 private String boundary; field in class:ContentImpl 25 public ContentImpl( String content, String boundary ) { 28 this.boundary = boundary; 61 if (boundary == null) { 65 return "--" + boundary + "\r\n" + getContentTypeHeader() + 69 return "--" + boundary + "\r\n" + getContentTypeHeader() + "\r\n" + content.toString();
|
/external/chromium/chrome/browser/autofill/ |
autofill_type_unittest.cc | 41 // Boundary (error) condition. 42 AutofillType boundary(MAX_VALID_FIELD_TYPE); 43 EXPECT_EQ(UNKNOWN_TYPE, boundary.field_type()); 44 EXPECT_EQ(AutofillType::NO_GROUP, boundary.group()); 45 EXPECT_EQ(AutofillType::NO_SUBGROUP, boundary.subgroup()); 47 // Beyond the boundary (error) condition.
|
/external/e2fsprogs/tests/progs/test_data/ |
test.brel | 14 # Test boundary cases for brel_put 19 # Test other boundary cases
|
/packages/apps/Email/emailcommon/src/org/apache/james/mime4j/ |
MimeBoundaryInputStream.java | 29 * can be used to determine if a final boundary has been seen or not.
40 private byte[] boundary = null;
field in class:MimeBoundaryInputStream 49 * @param boundary Boundary string (not including leading hyphens).
51 public MimeBoundaryInputStream(InputStream s, String boundary)
54 this.s = new PushbackInputStream(s, boundary.length() + 4);
56 boundary = "--" + boundary;
57 this.boundary = new byte[boundary.length()]; [all...] |
/hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/ |
PERF.awk | 23 # Boundary: 36 # boundary - only log buffer traces in the steady state of this component 37 boundary = boundary ? boundary : "****"; 55 else if (gsub("^boundary=","",arg)) { boundary = arg } 71 # we are using the component thread as boundary by default 72 if (boundary == "****") { 77 boundary = substr(who, 0, 3) "T" [all...] |
/external/icu4c/i18n/ |
brktrans.cpp | 96 int32_t boundary; local 97 for(boundary = bi->next(); boundary != UBRK_DONE && boundary < offsets.limit; boundary = bi->next()) { 98 if (boundary == 0) continue; 101 UChar32 cp = sText.char32At(boundary-1); 106 cp = sText.char32At(boundary); 111 boundaries->addElement(boundary, status); 112 // printf("Boundary at %d\n", boundary) [all...] |
/libcore/luni/src/main/java/java/text/ |
BreakIterator.java | 38 * a boundary position at the beginning and end of each legal word (numbers 62 * <li>The beginning and end of the text are always treated as boundary 64 * <li>The current position of the iterator is always a boundary position 65 * (random- access methods move the iterator to the nearest boundary position 104 * BreakIterator boundary = BreakIterator.getWordInstance(); 105 * boundary.setText(stringToExamine); 106 * printEachForward(boundary, stringToExamine); 108 * boundary = BreakIterator.getSentenceInstance(Locale.US); 109 * boundary.setText(stringToExamine); 110 * printEachBackward(boundary, stringToExamine) [all...] |
/external/webkit/Source/WebCore/icu/unicode/ |
ubrk.h | 40 * Line boundary analysis determines where a text string can be broken 44 * Sentence boundary analysis allows selection with correct 48 * Word boundary analysis is used by search and replace functions, as 55 * Character boundary analysis allows users to interact with 57 * through a text string. Character boundary analysis provides correct 63 * Title boundary analysis locates all positions, 92 * void printEachForward( UBreakIterator* boundary, UChar* str) { 94 * int32_t start = ubrk_first(boundary); 95 * for (end = ubrk_next(boundary)); end != UBRK_DONE; start = end, end = ubrk_next(boundary)) { [all...] |
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/ |
test_results_uploader.py | 56 BOUNDARY = '-M-A-G-I-C---B-O-U-N-D-A-R-Y-' 61 lines.append('--' + BOUNDARY) 69 lines.append('--' + BOUNDARY) 77 lines.append('--' + BOUNDARY + '--') 80 content_type = 'multipart/form-data; boundary=%s' % BOUNDARY
|
/external/openssl/crypto/asn1/ |
bio_ndef.c | 90 /* Boundary where content is inserted */ 91 unsigned char **boundary; member in struct:ndef_aux_st 132 sarg.boundary = NULL; 140 ndef_aux->boundary = sarg.boundary; 172 if (!*ndef_aux->boundary) 175 *plen = *ndef_aux->boundary - *pbuf; 226 sarg.boundary = ndef_aux->boundary; 237 if (!*ndef_aux->boundary) [all...] |
/frameworks/base/media/libdrm/mobile1/src/parser/ |
parser_dm.c | 82 /* Find out the boundary */ 85 return FALSE; /* No boundary error */ 88 /* Record the boundary */ 93 strncpy((char *)pDmInfo->boundary, (char *)pStart, pEnd - pStart); 94 boundaryLen = strlen((char *)pDmInfo->boundary) + 2; /* 2 means: '\r' and '\n' */ 194 break; /* no boundary found */ 200 break; /* here means may be the boundary has been split */ 203 if (('\n' == *(pEnd + 1)) && (0 == memcmp(pEnd + 2, pDmInfo->boundary, strlen((char *)pDmInfo->boundary)))) 204 break; /* find the boundary here * [all...] |
/frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/comm/src/ |
omxVCCOMM_Copy8x8_s.s | 7 ; * [in] pSrc - pointer to the reference block in the source frame; must be aligned on an 8-byte boundary. 10 ; * [out] pDst - pointer to the destination block; must be aligned on an 8-byte boundary. 15 ; * - one or more of the following pointers is not aligned on an 8-byte boundary: pSrc, pDst
|
/frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/comm/src/ |
omxVCCOMM_Copy8x8_s.s | 7 ; * [in] pSrc - pointer to the reference block in the source frame; must be aligned on an 8-byte boundary. 10 ; * [out] pDst - pointer to the destination block; must be aligned on an 8-byte boundary. 15 ; * - one or more of the following pointers is not aligned on an 8-byte boundary: pSrc, pDst
|
/frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/comm/src/ |
omxVCCOMM_ComputeTextureErrorBlock.c | 31 * boundary. 34 * aligned on an 8-byte boundary. 39 * aligned on an 8-byte boundary.
|
omxVCCOMM_Copy16x16.c | 31 * aligned on a 16-byte boundary. 39 * 16-byte boundary. 48 * boundary: pSrc, pDst
|
omxVCCOMM_Copy8x8.c | 31 * aligned on an 8-byte boundary. 39 * boundary. 48 * boundary: pSrc, pDst
|
/cts/tests/tests/webkit/src/android/webkit/cts/ |
DateSorterTest.java | 90 long boundary = dateSorter.getBoundary(i); local 93 assertEquals(i, dateSorter.getIndex(boundary + 1)); 95 assertEquals(nextIndex, dateSorter.getIndex(boundary)); 96 assertEquals(nextIndex, dateSorter.getIndex(boundary-1));
|
/external/chromium/chrome/browser/accessibility/ |
browser_accessibility_delegate_mac.h | 14 // objects over the IPC boundary.
|
/external/chromium/webkit/glue/ |
multipart_response_delegate.cc | 61 const std::string& boundary) 71 // Some servers report a boundary prefixed with "--". See bug 5786. 72 if (StartsWithASCII(boundary, "--", true)) { 73 boundary_.assign(boundary); 75 boundary_.append(boundary); 82 // stop_sending_ means that we've already received the final boundary token. 91 // Some servers don't send a boundary token before the first chunk of 101 // We don't have enough data yet to make a boundary token. Just wait 134 // boundary on the same lines as Firefox. 153 // This was the last boundary so we can stop processing [all...] |
/external/clang/test/CodeGenCXX/ |
warn-padded-packed.cpp | 9 struct S2 { // expected-warning {{padding size of 'S2' with 3 bytes to alignment boundary}} 32 struct S6 { // expected-warning {{padding size of 'S6' with 30 bits to alignment boundary}} 36 struct S7 { // expected-warning {{padding size of 'S7' with 7 bytes to alignment boundary}} 70 struct S13 { // expected-warning {{padding size of 'S13' with 6 bits to alignment boundary}}
|
/frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/ |
omxVCM4P2_TransRecBlockCoef_inter.c | 29 * while reconstructing the texture residual. There is no boundary check for 35 * 16-byte boundary. 44 * on a 16-byte boundary. 46 * on a 16-byte boundary.
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/ |
MimeMultipart.java | 47 mBoundary = MimeUtility.getHeaderParameter(contentType, "boundary"); 49 throw new MessagingException("MultiPart does not contain boundary: " + contentType); 53 "Invalid MultiPart Content-Type; must contain subtype and boundary. (" 82 mContentType = String.format("multipart/%s; boundary=\"%s\"", subType, mBoundary);
|