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

1 2

  /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:__anon1623
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/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/chromium/third_party/icu/source/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/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/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();
MultipartMimeContentImpl.java 31 private String boundary; field in class:MultipartMimeContentImpl
33 public static String BOUNDARY = "boundary";
40 this.boundary = contentTypeHeader.getParameter(BOUNDARY);
87 String delimiter = this.getContentTypeHeader().getParameter(BOUNDARY);
128 ContentImpl content = new ContentImpl(rest, boundary);
MessageFactoryImpl.java 835 String boundary = multipartMimeCth.getParameter("boundary"); local
    [all...]
  /external/openssl/crypto/asn1/
bio_ndef.c 93 /* Boundary where content is inserted */
94 unsigned char **boundary; member in struct:ndef_aux_st
135 sarg.boundary = NULL;
143 ndef_aux->boundary = sarg.boundary;
175 if (!*ndef_aux->boundary)
178 *plen = *ndef_aux->boundary - *pbuf;
229 sarg.boundary = ndef_aux->boundary;
240 if (!*ndef_aux->boundary)
    [all...]
  /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/webkit/WebCore/wml/
WMLGoElement.cpp 157 Vector<char> boundary = m_formDataBuilder.generateUniqueBoundaryString(); local
158 data = createFormData(boundary.data());
159 request.setHTTPContentType(m_formDataBuilder.encodingType() + "; boundary=" + boundary.data());
184 PassRefPtr<FormData> WMLGoElement::createFormData(const CString& boundary)
201 m_formDataBuilder.beginMultiPartHeader(header, boundary, key);
214 m_formDataBuilder.addBoundaryToMultiPartHeader(encodedData, boundary, true);
  /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...]
BodyDescriptor.java 36 private String boundary = null; field in class:BodyDescriptor
120 String b = (String) params.get("boundary");
130 boundary = b;
146 parameters.remove("boundary");
351 * Return the boundary
353 * @return boundary
356 return boundary;
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/encodings/
ISO9796d1Encoding.java 216 int boundary = 0; local
229 boundary = i - 1;
238 block[boundary] = 0;
240 byte[] nblock = new byte[(block.length - boundary) / 2];
244 nblock[i] = block[2 * i + boundary + 1];
  /external/webkit/WebCore/inspector/front-end/
TextViewer.js 494 var boundary = element.rangeBoundaryForOffset(startOffset); variable
495 var textNode = boundary.container;
498 if (boundary.offset + markLength < text.length) {
500 textNode.textContent = text.substring(boundary.offset + markLength);
502 var prefixNode = document.createTextNode(text.substring(0, boundary.offset));
510 markLength -= text.length - boundary.offset;
511 textNode.textContent = text.substring(0, boundary.offset);
  /external/webkit/WebCore/platform/network/
FormDataBuilder.cpp 138 Vector<char> boundary; local
145 // to appear in the boundary string, because 0x41 and 0x42 are present in
159 append(boundary, "----WebKitFormBoundary");
172 boundary.append(randomBytes);
173 boundary.append(0); // Add a 0 at the end so we can use this as a C-style string.
174 return boundary;
177 void FormDataBuilder::beginMultiPartHeader(Vector<char>& buffer, const CString& boundary, const CString& name)
179 addBoundaryToMultiPartHeader(buffer, boundary);
188 void FormDataBuilder::addBoundaryToMultiPartHeader(Vector<char>& buffer, const CString& boundary, bool isLastBoundary)
191 append(buffer, boundary);
    [all...]
  /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
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/src/
perf_print.c 274 unsigned long boundary = ((unsigned long) eBoundary) & PERF_BoundaryMask; local
283 (boundary < PERF_BoundaryMax ?
284 PERF_BoundaryTypes[boundary] : "INVALID"),
  /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/clearsilver/cgi/
rfc2388.c 244 static BOOL _is_boundary (char *boundary, char *s, int l, int *done)
249 /* cache the boundary strlen... more pointless optimization by blong */
250 if (old_boundary != boundary)
252 old_boundary = boundary;
253 bl = strlen(boundary);
262 if (bl+2 == l && s[0] == '-' && s[1] == '-' && !strncmp (s+2, boundary, bl))
265 !strncmp (s+2, boundary, bl) &&
274 static NEOERR * _find_boundary (CGI *cgi, char *boundary, int *done)
289 if (_is_boundary(boundary, s, l, done))
357 static NEOERR * _read_part (CGI *cgi, char *boundary, int *done
555 char *boundary = NULL; local
    [all...]
  /external/webkit/WebCore/platform/graphics/win/
UniscribeController.cpp 285 int boundary = k + m_currentCharacter + item.iCharPos; local
286 if (boundary < m_run.length() &&
288 roundingHackWordBoundaries[clusters[k]] = boundary;
352 // to be integer width, so the following words will start on an integer boundary.
358 // width so that the total run width will be on an integer 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/webkit/WebCore/html/
HTMLFormElement.cpp 204 PassRefPtr<FormData> HTMLFormElement::createFormData(const CString& boundary)
230 m_formDataBuilder.beginMultiPartHeader(header, boundary, key.data());
278 m_formDataBuilder.addBoundaryToMultiPartHeader(encodedData, boundary, true);
404 Vector<char> boundary = m_formDataBuilder.generateUniqueBoundaryString(); local
405 frame->loader()->submitForm("POST", m_url, createFormData(boundary.data()), m_target, m_formDataBuilder.encodingType(), boundary.data(), lockHistory, event, formState.release());
  /external/webkit/WebCore/platform/text/
StringImpl.cpp 381 TextBreakIterator* boundary = wordBreakIterator(stringWithPrevious.characters(), m_length + 1); local
382 if (!boundary)
388 int32_t startOfWord = textBreakFirst(boundary);
389 for (endOfWord = textBreakNext(boundary); endOfWord != TextBreakDone; startOfWord = endOfWord, endOfWord = textBreakNext(boundary)) {
  /device/samsung/crespo/alsa-lib/src/pcm/
pcm_direct.c 827 COPY_SLAVE(boundary);
852 snd_pcm_uframes_t boundary; local
995 ret = snd_pcm_sw_params_get_boundary(sw_params, &boundary);
997 SNDERR("unable to get boundary");
1000 ret = snd_pcm_sw_params_set_stop_threshold(spcm, sw_params, boundary);
1025 ret = snd_pcm_sw_params_set_silence_size(spcm, sw_params, boundary);
1063 * boundary has to be taken from the slave config but
1064 * recalculated for the native boundary size (for 32bit
1069 dmix->slave_boundary = spcm->boundary;
1182 COPY_SLAVE(boundary);
    [all...]

Completed in 432 milliseconds

1 2