Searched refs:boundary (Results 1 - 25 of 100) sorted by relevance

1234

/external/icu4c/samples/break/
H A Dbreak.cpp44 void printEachForward( BreakIterator& boundary) argument
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) argument
58 int32_t end = boundary.last();
59 for (int32_t start = boundary.previous();
61 end = start, start = boundary.previous())
63 printTextRange( boundary, star
68 printFirst(BreakIterator& boundary) argument
76 printLast(BreakIterator& boundary) argument
84 printAt(BreakIterator &boundary, int32_t pos ) argument
96 BreakIterator* boundary; local
[all...]
H A Dubreak.c33 void printEachForward( UBreakIterator* boundary, UChar* str) { argument
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) { argument
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) { argument
56 int32_t start = ubrk_first(boundary);
62 printLast(UBreakIterator* boundary, UChar* str) argument
71 printAt(UBreakIterator* boundary, int32_t pos , UChar* str) argument
81 UBreakIterator *boundary; local
[all...]
/external/bison/src/
H A Dlocation.h26 /* 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:__anon331
45 equal_boundaries (boundary a, boundary b)
56 boundary start;
59 boundary end;
H A Dreader.h41 extern boundary scanner_cursor;
/external/nist-sip/java/gov/nist/javax/sip/message/
H A DContentImpl.java17 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();
H A DMultipartMimeContentImpl.java31 private String boundary; field in class:MultipartMimeContentImpl
33 public static String BOUNDARY = "boundary";
40 this.boundary = contentTypeHeader.getParameter(BOUNDARY);
128 ContentImpl content = new ContentImpl(rest, boundary);
/external/icu4c/i18n/
H A Dbrktrans.cpp96 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/openssl/crypto/asn1/
H A Dbio_ndef.c91 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)
239 *pbuf = *ndef_aux->boundary;
[all...]
/external/speex/libspeex/
H A Dvq.c51 int scal_quant(spx_word16_t in, const spx_word16_t *boundary, int entries) argument
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) argument
65 while (i<entries-1 && in>boundary[0])
67 boundary++;
H A Dvq.h40 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/webkit/Source/WebCore/platform/network/
H A DFormDataBuilder.h39 static void beginMultiPartHeader(Vector<char>&, const CString& boundary, const CString& name);
40 static void addBoundaryToMultiPartHeader(Vector<char>&, const CString& boundary, bool isLastBoundary = false);
H A DFormDataBuilder.cpp103 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) argument
144 addBoundaryToMultiPartHeader(buffer, boundary);
153 void FormDataBuilder::addBoundaryToMultiPartHeader(Vector<char>& buffer, const CString& boundary, bool isLastBoundary) argument
156 append(buffer, boundary);
[all...]
/external/chromium/chrome/browser/autofill/
H A Dautofill_type_unittest.cc42 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/
H A DDateFmtPerf.h61 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
[all...]
/external/webkit/Source/WebCore/wml/
H A DWMLGoElement.h50 PassRefPtr<FormData> createFormData(const CString& boundary);
H A DWMLGoElement.cpp164 Vector<char> boundary = FormDataBuilder::generateUniqueBoundaryString(); local
165 data = createFormData(boundary.data());
166 request.setHTTPContentType(m_formAttributes.encodingType() + "; boundary=" + boundary.data());
191 PassRefPtr<FormData> WMLGoElement::createFormData(const CString& boundary) argument
208 FormDataBuilder::beginMultiPartHeader(header, boundary, key);
221 FormDataBuilder::addBoundaryToMultiPartHeader(encodedData, boundary, true);
/external/compiler-rt/lib/asan/
H A Dasan_malloc_linux.cc28 DECLARE_REAL_AND_INTERCEPTOR(void*, memalign, uptr boundary, uptr size);
97 INTERCEPTOR(void*, memalign, uptr boundary, uptr size) {
99 return asan_memalign(boundary, size, &stack);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common.h132 INLINE uptr RoundUpTo(uptr size, uptr boundary) { argument
133 CHECK(IsPowerOfTwo(boundary));
134 return (size + boundary - 1) & ~(boundary - 1);
/external/webkit/Source/WebCore/loader/
H A DFormSubmission.cpp124 inline FormSubmission::FormSubmission(Method method, const KURL& action, const String& target, const String& contentType, PassRefPtr<FormState> state, PassRefPtr<FormData> data, const String& boundary, bool lockHistory, PassRefPtr<Event> event) argument
131 , m_boundary(boundary)
193 String boundary; local
197 boundary = formData->boundary().data();
210 return adoptRef(new FormSubmission(copiedAttributes.method(), actionURL, targetOrBaseTarget, encodingType, formState.release(), formData.release(), boundary, lockHistory, event));
239 frameRequest.resourceRequest().setHTTPContentType(m_contentType + "; boundary=" + m_boundary);
H A DFormSubmission.h101 const String boundary() const { return m_boundary; } function in class:WebCore::FormSubmission
111 FormSubmission(Method, const KURL& action, const String& target, const String& contentType, PassRefPtr<FormState>, PassRefPtr<FormData>, const String& boundary, bool lockHistory, PassRefPtr<Event>);
/external/opencv/cv/src/
H A D_cvkdtree.hpp72 scalar_type boundary; // left if deref(value,dim)<=boundary, otherwise right member in struct:CvKDTree::node
189 n.boundary = deref(ctor(*median), dim);
210 if (deref(p, n.dim) <= n.boundary) // left
290 nodes[i].right << ", dim " << nodes[i].dim << ", boundary " <<
291 nodes[i].boundary << std::endl;
343 if (d[n.dim] <= n.boundary) { // left
344 pq_alternate(n.right, pq, n.boundary - d[n.dim]);
347 pq_alternate(n.left, pq, d[n.dim] - n.boundary);
436 if (bounds_min[n.dim] <= n.boundary)
[all...]
/external/harfbuzz/src/
H A Dharfbuzz-tibetan.c260 hb_uint32 boundary = tibetan_nextSyllableBoundary(text, from+i, end, &invalid) - from; local
264 if (boundary > len-1) boundary = len;
266 while (i < boundary) {
271 assert(i == boundary);
/external/webkit/Source/WebCore/dom/
H A DRange.cpp356 // point is in the middle of this range, or on the boundary points
948 // NO_MODIFICATION_ALLOWED_ERR: Raised if an ancestor container of either boundary-point of
1432 // NO_MODIFICATION_ALLOWED_ERR: Raised if an ancestor container of either boundary-point of
1727 static inline void boundaryNodeChildrenChanged(RangeBoundaryPoint& boundary, ContainerNode* container) argument
1729 if (!boundary.childBefore())
1731 if (boundary.container() != container)
1733 boundary.invalidateOffset();
1744 static inline void boundaryNodeChildrenWillBeRemoved(RangeBoundaryPoint& boundary, ContainerNode* container) argument
1747 if (boundary.childBefore() == nodeToBeRemoved) {
1748 boundary
1769 boundaryNodeWillBeRemoved(RangeBoundaryPoint& boundary, Node* nodeToBeRemoved) argument
1794 boundaryTextInserted(RangeBoundaryPoint& boundary, Node* text, unsigned offset, unsigned length) argument
1812 boundaryTextRemoved(RangeBoundaryPoint& boundary, Node* text, unsigned offset, unsigned length) argument
1833 boundaryTextNodesMerged(RangeBoundaryPoint& boundary, NodeWithIndex& oldNode, unsigned offset) argument
1853 boundaryTextNodesSplit(RangeBoundaryPoint& boundary, Text* oldNode) argument
[all...]
/external/chromium/webkit/glue/
H A Dmultipart_response_delegate.h72 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
/external/dbus/dbus/
H A Ddbus-internals.h199 /* Align a value upward to a boundary, expressed as a number of bytes.
200 * E.g. align to an 8-byte boundary with argument of 8.
204 * (this + boundary - 1)
206 * ~(boundary - 1)
209 #define _DBUS_ALIGN_VALUE(this, boundary) \
210 (( ((uintptr_t)(this)) + (((uintptr_t)(boundary)) -1)) & (~(((uintptr_t)(boundary))-1)))
212 #define _DBUS_ALIGN_ADDRESS(this, boundary) \
213 ((void*)_DBUS_ALIGN_VALUE(this, boundary))

Completed in 576 milliseconds

1234