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

123456

/external/chromium_org/third_party/icu/source/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/icu/icu4c/source/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/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();
/external/bison/src/
H A Dlocation.h25 /* 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:__anon377
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
[all...]
/external/compiler-rt/test/asan/TestCases/Posix/
H A Dlarge_allocator_unpoisons_on_free.cc14 void *my_memalign(size_t boundary, size_t size) { argument
15 return memalign(boundary, size);
18 void *my_memalign(size_t boundary, size_t size) { argument
20 posix_memalign(&p, boundary, size);
/external/eigen/doc/special_examples/
H A DTutorial_sparse_example_details.cpp9 Eigen::VectorXd& b, const Eigen::VectorXd& boundary)
11 int n = boundary.size();
14 if(i==-1 || i==n) b(id) -= w * boundary(j); // constrained coefficient
15 else if(j==-1 || j==n) b(id) -= w * boundary(i); // constrained coefficient
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);
8 insertCoefficient(int id, int i, int j, double w, std::vector<T>& coeffs, Eigen::VectorXd& b, const Eigen::VectorXd& boundary) argument
[all...]
/external/chromium_org/third_party/icu/source/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/icu/icu4c/source/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/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dbc-align.c40 /*@only@*/ yasm_expr *boundary; /* alignment boundary */ member in struct:bytecode_align
81 if (align->boundary)
82 yasm_expr_destroy(align->boundary);
96 yasm_expr_print(align->boundary, f);
108 if (!yasm_expr_get_intnum(&align->boundary, 0))
110 N_("align boundary must be a constant"));
139 unsigned long boundary = local
140 yasm_intnum_get_uint(yasm_expr_get_intnum(&align->boundary, 0));
142 if (boundary
174 unsigned long boundary = local
233 yasm_bc_create_align(yasm_expr *boundary, yasm_expr *fill, yasm_expr *maxskip, const unsigned char **code_fill, unsigned long line) argument
[all...]
/external/chromium_org/components/crash/tools/
H A Ddmp2minidump.py25 boundary = dump.readline().strip()[2:]
26 data = parse_multipart(dump, {'boundary': boundary})
/external/chromium_org/third_party/boringssl/src/crypto/asn1/
H A Dbio_ndef.c96 unsigned char **boundary; member in struct:ndef_aux_st
137 sarg.boundary = NULL;
145 ndef_aux->boundary = sarg.boundary;
177 if (!*ndef_aux->boundary)
180 *plen = *ndef_aux->boundary - *pbuf;
231 sarg.boundary = ndef_aux->boundary;
242 if (!*ndef_aux->boundary)
244 *pbuf = *ndef_aux->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/chromium_org/ui/accessibility/
H A Dax_text_utils.cc14 TextBoundaryType boundary,
20 if (boundary == CHAR_BOUNDARY) {
25 } else if (boundary == LINE_BOUNDARY) {
56 switch (boundary) {
12 FindAccessibleTextBoundary(const base::string16& text, const std::vector<int>& line_breaks, TextBoundaryType boundary, size_t start_offset, TextBoundaryDirection direction) argument
H A Dax_text_utils.h32 // A direction when searching for the next boundary.
34 // Search forwards for the next boundary past the starting position.
36 // Search backwards for the previous boundary before the starting position.
43 // given boundary is found, and return the offset of that boundary,
48 TextBoundaryType boundary,
/external/chromium_org/third_party/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/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/chromium_org/third_party/WebKit/Source/platform/network/
H A DFormDataBuilder.h40 static void beginMultiPartHeader(Vector<char>&, const CString& boundary, const CString& name);
41 static void addBoundaryToMultiPartHeader(Vector<char>&, const CString& boundary, bool isLastBoundary = false);
H A DFormDataBuilder.cpp105 Vector<char> boundary; local
112 // to appear in the boundary string, because 0x41 and 0x42 are present in
126 append(boundary, "----WebKitFormBoundary");
139 boundary.appendVector(randomBytes);
140 boundary.append(0); // Add a 0 at the end so we can use this as a C-style string.
141 return boundary;
144 void FormDataBuilder::beginMultiPartHeader(Vector<char>& buffer, const CString& boundary, const CString& name) argument
146 addBoundaryToMultiPartHeader(buffer, boundary);
155 void FormDataBuilder::addBoundaryToMultiPartHeader(Vector<char>& buffer, const CString& boundary, bool isLastBoundary) argument
158 append(buffer, boundary);
[all...]
/external/compiler-rt/lib/asan/
H A Dasan_malloc_linux.cc31 DECLARE_REAL_AND_INTERCEPTOR(void*, memalign, uptr boundary, uptr size)
104 INTERCEPTOR(void*, memalign, uptr boundary, uptr size) {
106 return asan_memalign(boundary, size, &stack, FROM_MALLOC);
109 INTERCEPTOR(void*, aligned_alloc, uptr boundary, uptr size) {
111 return asan_memalign(boundary, size, &stack, FROM_MALLOC);
114 INTERCEPTOR(void*, __libc_memalign, uptr boundary, uptr size) {
116 void *res = asan_memalign(boundary, size, &stack, FROM_MALLOC);
117 DTLS_on_libc_memalign(res, size * boundary);
/external/chromium_org/third_party/skia/src/core/
H A DSkDeviceLooper.cpp83 static bool next_tile(const SkIRect& boundary, int delta, SkIPoint* offset) { argument
85 if (offset->x() + delta < boundary.right()) {
91 offset->fX = boundary.left();
92 if (offset->y() + delta < boundary.bottom()) {
97 // offset is now outside of boundary, so we're done
/external/skia/src/core/
H A DSkDeviceLooper.cpp82 static bool next_tile(const SkIRect& boundary, int delta, SkIPoint* offset) { argument
84 if (offset->x() + delta < boundary.right()) {
90 offset->fX = boundary.left();
91 if (offset->y() + delta < boundary.bottom()) {
96 // offset is now outside of boundary, so we're done

Completed in 1330 milliseconds

123456