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

1 2 3 4 5 6

  /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/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/bison/src/
location.h 25 /* A boundary between two characters. */
28 /* The name of the file that contains the boundary. */
31 /* If nonnegative, the (origin-1) line that contains the boundary.
38 /* If nonnegative, the (origin-1) column just after the boundary.
47 } boundary; typedef in typeref:struct:__anon2342
51 boundary_set (boundary *b, const char *f, int l, int c)
61 boundary_cmp (boundary a, boundary b)
73 equal_boundaries (boundary a, boundary b
    [all...]
  /packages/apps/Email/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...]
  /external/eigen/doc/special_examples/
Tutorial_sparse_example_details.cpp 9 Eigen::VectorXd& b, const Eigen::VectorXd& boundary)
11 int n = boundary.size();
14 if(i==-1 || i==n) b(id) -= w * boundary(j); // constrained coeffcieint
15 else if(j==-1 || j==n) b(id) -= w * boundary(i); // constrained coeffcieint
22 Eigen::ArrayXd boundary = Eigen::ArrayXd::LinSpaced(n, 0,M_PI).sin().pow(2); local
28 insertCoefficient(id, i-1,j, -1, coefficients, b, boundary);
29 insertCoefficient(id, i+1,j, -1, coefficients, b, boundary);
30 insertCoefficient(id, i,j-1, -1, coefficients, b, boundary);
31 insertCoefficient(id, i,j+1, -1, coefficients, b, boundary);
32 insertCoefficient(id, i,j, 4, coefficients, b, boundary);
    [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...]
  /external/webkit/Source/WebCore/platform/network/
FormDataBuilder.h 39 static void beginMultiPartHeader(Vector<char>&, const CString& boundary, const CString& name);
40 static void addBoundaryToMultiPartHeader(Vector<char>&, const CString& boundary, bool isLastBoundary = false);
FormDataBuilder.cpp 103 Vector<char> boundary; local
110 // to appear in the boundary string, because 0x41 and 0x42 are present in
124 append(boundary, "----WebKitFormBoundary");
137 boundary.append(randomBytes);
138 boundary.append(0); // Add a 0 at the end so we can use this as a C-style string.
139 return boundary;
142 void FormDataBuilder::beginMultiPartHeader(Vector<char>& buffer, const CString& boundary, const CString& name)
144 addBoundaryToMultiPartHeader(buffer, boundary);
153 void FormDataBuilder::addBoundaryToMultiPartHeader(Vector<char>& buffer, const CString& boundary, bool isLastBoundary)
156 append(buffer, boundary);
    [all...]
  /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...]
  /cts/tests/tests/webkit/src/android/webkit/cts/
DateSorterTest.java 63 long boundary = dateSorter.getBoundary(i); local
66 assertEquals(i, dateSorter.getIndex(boundary + 1));
68 assertEquals(nextIndex, dateSorter.getIndex(boundary));
69 assertEquals(nextIndex, dateSorter.getIndex(boundary-1));
  /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/speex/libspeex/
vq.c 51 int scal_quant(spx_word16_t in, const spx_word16_t *boundary, int entries)
54 while (i<entries-1 && in>boundary[0])
56 boundary++;
62 int scal_quant32(spx_word32_t in, const spx_word32_t *boundary, int entries)
65 while (i<entries-1 && in>boundary[0])
67 boundary++;
vq.h 40 int scal_quant(spx_word16_t in, const spx_word16_t *boundary, int entries);
41 int scal_quant32(spx_word32_t in, const spx_word32_t *boundary, int entries);
  /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/icu4c/test/perf/DateFmtPerf/
DateFmtPerf.h 61 BreakIterator* boundary; local
67 boundary = BreakIterator::createWordInstance("en", *status);
68 boundary->setText(str);
70 int32_t start = boundary->first();
71 for (int32_t end = boundary->next();
73 start = end, end = boundary->next())
75 printTextRange( *boundary, start, end );
84 boundary = BreakIterator::createCharacterInstance(Locale::getUS(), *status);
85 boundary->setText(str);
87 int32_t start = boundary->first()
    [all...]
  /external/webkit/Source/WebCore/wml/
WMLGoElement.h 50 PassRefPtr<FormData> createFormData(const CString& boundary);
  /external/llvm/test/MC/X86/AlignedBundling/
pad-align-to-bundle-end.s 26 # Here we have to pad until the end of the *next* boundary because
27 # otherwise the group crosses a boundary.
30 # it's one instruction, that instruction cannot itself cross the boundary.
  /frameworks/base/media/libdrm/mobile1/include/objmng/
drm_inner.h 44 uint8_t boundary[256]; member in struct:_T_DRM_DM_Binary_Node
48 uint8_t boundary[256]; member in struct:_T_DRM_DM_Base64_Node
  /external/compiler-rt/lib/asan/
asan_malloc_linux.cc 29 DECLARE_REAL_AND_INTERCEPTOR(void*, memalign, uptr boundary, uptr size)
98 INTERCEPTOR(void*, memalign, uptr boundary, uptr size) {
100 return asan_memalign(boundary, size, &stack, FROM_MALLOC);
  /packages/apps/Email/src/org/apache/james/mime4j/message/
Multipart.java 169 String boundary = getBoundary(); local
177 writer.write(boundary + "\r\n");
182 writer.write(boundary + "--" + "\r\n");
  /external/chromium/webkit/glue/
multipart_response_delegate.h 72 const std::string& boundary);
84 // Returns the multi part boundary string from the Content-type header
119 // Find the next boundary in data_. Returns std::string::npos if there's no
130 // Multipart boundary token
  /frameworks/base/media/libdrm/mobile1/include/parser/
parser_dm.h 61 uint8_t boundary[MAX_CONTENT_BOUNDARY_LEN]; /**< DRM message's boundary */ member in struct:_T_DRM_DM_Info
  /external/eigen/test/
unalignedassert.cpp 68 void construct_at_boundary(int boundary)
73 _buf += boundary; // make exact boundary-aligned
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_common.h 211 INLINE uptr RoundUpTo(uptr size, uptr boundary) {
212 CHECK(IsPowerOfTwo(boundary));
213 return (size + boundary - 1) & ~(boundary - 1);
216 INLINE uptr RoundDownTo(uptr x, uptr boundary) {
217 return x & ~(boundary - 1);

Completed in 2853 milliseconds

1 2 3 4 5 6