Home
last modified time | relevance | path

Searched refs:boundary (Results 1 – 25 of 266) sorted by relevance

1234567891011

/external/icu/icu4c/source/samples/break/
Dbreak.cpp44 void printEachForward( BreakIterator& boundary) in printEachForward() argument
46 int32_t start = boundary.first(); in printEachForward()
47 for (int32_t end = boundary.next(); in printEachForward()
49 start = end, end = boundary.next()) in printEachForward()
51 printTextRange( boundary, start, end ); in printEachForward()
56 void printEachBackward( BreakIterator& boundary) in printEachBackward() argument
58 int32_t end = boundary.last(); in printEachBackward()
59 for (int32_t start = boundary.previous(); in printEachBackward()
61 end = start, start = boundary.previous()) in printEachBackward()
63 printTextRange( boundary, start, end ); in printEachBackward()
[all …]
Dubreak.c33 void printEachForward( UBreakIterator* boundary, UChar* str) { in printEachForward() argument
35 int32_t start = ubrk_first(boundary); in printEachForward()
36 for (end = ubrk_next(boundary); end != UBRK_DONE; start = end, end = in printEachForward()
37 ubrk_next(boundary)) { in printEachForward()
44 void printEachBackward( UBreakIterator* boundary, UChar* str) { in printEachBackward() argument
46 int32_t end = ubrk_last(boundary); in printEachBackward()
47 for (start = ubrk_previous(boundary); start != UBRK_DONE; end = start, in printEachBackward()
48 start =ubrk_previous(boundary)) { in printEachBackward()
54 void printFirst(UBreakIterator* boundary, UChar* str) { in printFirst() argument
56 int32_t start = ubrk_first(boundary); in printFirst()
[all …]
/external/chromium_org/third_party/icu/source/samples/break/
Dbreak.cpp44 void printEachForward( BreakIterator& boundary) in printEachForward() argument
46 int32_t start = boundary.first(); in printEachForward()
47 for (int32_t end = boundary.next(); in printEachForward()
49 start = end, end = boundary.next()) in printEachForward()
51 printTextRange( boundary, start, end ); in printEachForward()
56 void printEachBackward( BreakIterator& boundary) in printEachBackward() argument
58 int32_t end = boundary.last(); in printEachBackward()
59 for (int32_t start = boundary.previous(); in printEachBackward()
61 end = start, start = boundary.previous()) in printEachBackward()
63 printTextRange( boundary, start, end ); in printEachBackward()
[all …]
Dubreak.c33 void printEachForward( UBreakIterator* boundary, UChar* str) { in printEachForward() argument
35 int32_t start = ubrk_first(boundary); in printEachForward()
36 for (end = ubrk_next(boundary); end != UBRK_DONE; start = end, end = in printEachForward()
37 ubrk_next(boundary)) { in printEachForward()
44 void printEachBackward( UBreakIterator* boundary, UChar* str) { in printEachBackward() argument
46 int32_t end = ubrk_last(boundary); in printEachBackward()
47 for (start = ubrk_previous(boundary); start != UBRK_DONE; end = start, in printEachBackward()
48 start =ubrk_previous(boundary)) { in printEachBackward()
54 void printFirst(UBreakIterator* boundary, UChar* str) { in printFirst() argument
56 int32_t start = ubrk_first(boundary); in printFirst()
[all …]
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
Dbc-align.c40 /*@only@*/ yasm_expr *boundary; /* alignment boundary */ member
81 if (align->boundary) in bc_align_destroy()
82 yasm_expr_destroy(align->boundary); in bc_align_destroy()
96 yasm_expr_print(align->boundary, f); in bc_align_print()
108 if (!yasm_expr_get_intnum(&align->boundary, 0)) in bc_align_finalize()
139 unsigned long boundary = in bc_align_expand() local
140 yasm_intnum_get_uint(yasm_expr_get_intnum(&align->boundary, 0)); in bc_align_expand()
142 if (boundary == 0) { in bc_align_expand()
149 if ((unsigned long)new_val & (boundary-1)) in bc_align_expand()
150 end = ((unsigned long)new_val & ~(boundary-1)) + boundary; in bc_align_expand()
[all …]
/external/bison/src/
Dlocation.h47 } boundary; typedef
51 boundary_set (boundary *b, const char *f, int l, int c) in boundary_set()
61 boundary_cmp (boundary a, boundary b) in boundary_cmp()
73 equal_boundaries (boundary a, boundary b) in equal_boundaries()
84 boundary start;
87 boundary end;
99 boundary *cur, char const *token, size_t size);
124 void boundary_set_from_string (boundary *bound, char *loc_str);
/external/chromium_org/third_party/icu/source/i18n/
Dbrktrans.cpp96 int32_t boundary; in handleTransliterate() local
97 …for(boundary = bi->next(); boundary != UBRK_DONE && boundary < offsets.limit; boundary = bi->next(… in handleTransliterate()
98 if (boundary == 0) continue; in handleTransliterate()
101 UChar32 cp = sText.char32At(boundary-1); in handleTransliterate()
106 cp = sText.char32At(boundary); in handleTransliterate()
111 boundaries->addElement(boundary, status); in handleTransliterate()
125 boundary = boundaries->popi(); in handleTransliterate()
126 text.handleReplaceBetween(boundary, boundary, fInsertion); in handleTransliterate()
/external/icu/icu4c/source/i18n/
Dbrktrans.cpp96 int32_t boundary; in handleTransliterate() local
97 …for(boundary = bi->next(); boundary != UBRK_DONE && boundary < offsets.limit; boundary = bi->next(… in handleTransliterate()
98 if (boundary == 0) continue; in handleTransliterate()
101 UChar32 cp = sText.char32At(boundary-1); in handleTransliterate()
106 cp = sText.char32At(boundary); in handleTransliterate()
111 boundaries->addElement(boundary, status); in handleTransliterate()
125 boundary = boundaries->popi(); in handleTransliterate()
126 text.handleReplaceBetween(boundary, boundary, fInsertion); in handleTransliterate()
/external/eigen/doc/special_examples/
DTutorial_sparse_example_details.cpp9 Eigen::VectorXd& b, const Eigen::VectorXd& boundary) in insertCoefficient() argument
11 int n = boundary.size(); in insertCoefficient()
14 if(i==-1 || i==n) b(id) -= w * boundary(j); // constrained coefficient in insertCoefficient()
15 else if(j==-1 || j==n) b(id) -= w * boundary(i); // constrained coefficient in insertCoefficient()
22 Eigen::ArrayXd boundary = Eigen::ArrayXd::LinSpaced(n, 0,M_PI).sin().pow(2); in buildProblem() local
28 insertCoefficient(id, i-1,j, -1, coefficients, b, boundary); in buildProblem()
29 insertCoefficient(id, i+1,j, -1, coefficients, b, boundary); in buildProblem()
30 insertCoefficient(id, i,j-1, -1, coefficients, b, boundary); in buildProblem()
31 insertCoefficient(id, i,j+1, -1, coefficients, b, boundary); in buildProblem()
32 insertCoefficient(id, i,j, 4, coefficients, b, boundary); in buildProblem()
/external/nist-sip/java/gov/nist/javax/sip/message/
DContentImpl.java17 private String boundary; field in ContentImpl
25 public ContentImpl( String content, String boundary ) { in ContentImpl() argument
28 this.boundary = boundary; in ContentImpl()
61 if (boundary == null) { in toString()
65 return "--" + boundary + "\r\n" + getContentTypeHeader() + in toString()
69 … return "--" + boundary + "\r\n" + getContentTypeHeader() + "\r\n" + content.toString(); in toString()
/external/chromium_org/third_party/boringssl/src/crypto/asn1/
Dbio_ndef.c96 unsigned char **boundary; member
137 sarg.boundary = NULL; in BIO_new_NDEF()
145 ndef_aux->boundary = sarg.boundary; in BIO_new_NDEF()
177 if (!*ndef_aux->boundary) in ndef_prefix()
180 *plen = *ndef_aux->boundary - *pbuf; in ndef_prefix()
231 sarg.boundary = ndef_aux->boundary; in ndef_suffix()
242 if (!*ndef_aux->boundary) in ndef_suffix()
244 *pbuf = *ndef_aux->boundary; in ndef_suffix()
245 *plen = derlen - (*ndef_aux->boundary - ndef_aux->derbuf); in ndef_suffix()
/external/openssl/crypto/asn1/
Dbio_ndef.c91 unsigned char **boundary; member
132 sarg.boundary = NULL; in BIO_new_NDEF()
140 ndef_aux->boundary = sarg.boundary; in BIO_new_NDEF()
172 if (!*ndef_aux->boundary) in ndef_prefix()
175 *plen = *ndef_aux->boundary - *pbuf; in ndef_prefix()
226 sarg.boundary = ndef_aux->boundary; in ndef_suffix()
237 if (!*ndef_aux->boundary) in ndef_suffix()
239 *pbuf = *ndef_aux->boundary; in ndef_suffix()
240 *plen = derlen - (*ndef_aux->boundary - ndef_aux->derbuf); in ndef_suffix()
/external/chromium_org/third_party/WebKit/Source/platform/network/
DFormDataBuilder.cpp105 Vector<char> boundary; in generateUniqueBoundaryString() local
126 append(boundary, "----WebKitFormBoundary"); in generateUniqueBoundaryString()
139 boundary.appendVector(randomBytes); in generateUniqueBoundaryString()
140 boundary.append(0); // Add a 0 at the end so we can use this as a C-style string. in generateUniqueBoundaryString()
141 return boundary; in generateUniqueBoundaryString()
144 void FormDataBuilder::beginMultiPartHeader(Vector<char>& buffer, const CString& boundary, const CSt… in beginMultiPartHeader() argument
146 addBoundaryToMultiPartHeader(buffer, boundary); in beginMultiPartHeader()
155 void FormDataBuilder::addBoundaryToMultiPartHeader(Vector<char>& buffer, const CString& boundary, b… in addBoundaryToMultiPartHeader() argument
158 append(buffer, boundary); in addBoundaryToMultiPartHeader()
/external/compiler-rt/lib/asan/
Dasan_malloc_linux.cc31 DECLARE_REAL_AND_INTERCEPTOR(void*, memalign, uptr boundary, uptr size)
104 INTERCEPTOR(void*, memalign, uptr boundary, uptr size) { in INTERCEPTOR() argument
106 return asan_memalign(boundary, size, &stack, FROM_MALLOC); in INTERCEPTOR()
109 INTERCEPTOR(void*, aligned_alloc, uptr boundary, uptr size) { in INTERCEPTOR() argument
111 return asan_memalign(boundary, size, &stack, FROM_MALLOC); in INTERCEPTOR()
114 INTERCEPTOR(void*, __libc_memalign, uptr boundary, uptr size) { in INTERCEPTOR() argument
116 void *res = asan_memalign(boundary, size, &stack, FROM_MALLOC); in INTERCEPTOR()
117 DTLS_on_libc_memalign(res, size * boundary); in INTERCEPTOR()
/external/compiler-rt/test/asan/TestCases/Posix/
Dlarge_allocator_unpoisons_on_free.cc14 void *my_memalign(size_t boundary, size_t size) { in my_memalign() argument
15 return memalign(boundary, size); in my_memalign()
18 void *my_memalign(size_t boundary, size_t size) { in my_memalign() argument
20 posix_memalign(&p, boundary, size); in my_memalign()
/external/speex/libspeex/
Dvq.c51 int scal_quant(spx_word16_t in, const spx_word16_t *boundary, int entries) in scal_quant() argument
54 while (i<entries-1 && in>boundary[0]) in scal_quant()
56 boundary++; in scal_quant()
62 int scal_quant32(spx_word32_t in, const spx_word32_t *boundary, int entries) in scal_quant32() argument
65 while (i<entries-1 && in>boundary[0]) in scal_quant32()
67 boundary++; in scal_quant32()
/external/chromium_org/third_party/speex/libspeex/
Dvq.c51 int scal_quant(spx_word16_t in, const spx_word16_t *boundary, int entries) in scal_quant() argument
54 while (i<entries-1 && in>boundary[0]) in scal_quant()
56 boundary++; in scal_quant()
62 int scal_quant32(spx_word32_t in, const spx_word32_t *boundary, int entries) in scal_quant32() argument
65 while (i<entries-1 && in>boundary[0]) in scal_quant32()
67 boundary++; in scal_quant32()
/external/chromium_org/third_party/icu/source/test/perf/DateFmtPerf/
DDateFmtPerf.h61 BreakIterator* boundary; in call() local
67 boundary = BreakIterator::createWordInstance("en", *status); in call()
68 boundary->setText(str); in call()
70 int32_t start = boundary->first(); in call()
71 for (int32_t end = boundary->next(); in call()
73 start = end, end = boundary->next()) in call()
75 printTextRange( *boundary, start, end ); in call()
84 boundary = BreakIterator::createCharacterInstance(Locale::getUS(), *status); in call()
85 boundary->setText(str); in call()
87 int32_t start = boundary->first(); in call()
[all …]
/external/icu/icu4c/source/test/perf/DateFmtPerf/
DDateFmtPerf.h61 BreakIterator* boundary; in call() local
67 boundary = BreakIterator::createWordInstance("en", *status); in call()
68 boundary->setText(str); in call()
70 int32_t start = boundary->first(); in call()
71 for (int32_t end = boundary->next(); in call()
73 start = end, end = boundary->next()) in call()
75 printTextRange( *boundary, start, end ); in call()
84 boundary = BreakIterator::createCharacterInstance(Locale::getUS(), *status); in call()
85 boundary->setText(str); in call()
87 int32_t start = boundary->first(); in call()
[all …]
/external/chromium_org/chrome/browser/extensions/api/webrtc_logging_private/
Dwebrtc_logging_private_apitest.cc208 const char boundary[] = "------**--yradnuoBgoLtrapitluMklaTelgooG--**----"; in IN_PROC_BROWSER_TEST_F() local
217 size_t zip_length = multipart.find(boundary, zip_pos); in IN_PROC_BROWSER_TEST_F()
229 EXPECT_STREQ(&boundary[0], multipart_lines[0].c_str()); in IN_PROC_BROWSER_TEST_F()
235 EXPECT_STREQ(&boundary[0], multipart_lines[4].c_str()); in IN_PROC_BROWSER_TEST_F()
242 EXPECT_STREQ(&boundary[0], multipart_lines[8].c_str()); in IN_PROC_BROWSER_TEST_F()
248 EXPECT_STREQ(&boundary[0], multipart_lines[12].c_str()); in IN_PROC_BROWSER_TEST_F()
254 EXPECT_STREQ(&boundary[0], multipart_lines[16].c_str()); in IN_PROC_BROWSER_TEST_F()
260 EXPECT_STREQ(&boundary[0], multipart_lines[20].c_str()); in IN_PROC_BROWSER_TEST_F()
266 EXPECT_STREQ(&boundary[0], multipart_lines[24].c_str()); in IN_PROC_BROWSER_TEST_F()
274 std::string final_delimiter = boundary; in IN_PROC_BROWSER_TEST_F()
/external/chromium_org/ui/accessibility/
Dax_text_utils.cc14 TextBoundaryType boundary, in FindAccessibleTextBoundary() argument
20 if (boundary == CHAR_BOUNDARY) { in FindAccessibleTextBoundary()
25 } else if (boundary == LINE_BOUNDARY) { in FindAccessibleTextBoundary()
56 switch (boundary) { in FindAccessibleTextBoundary()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DRange.cpp1521 static inline void boundaryNodeChildrenChanged(RangeBoundaryPoint& boundary, ContainerNode* contain… in boundaryNodeChildrenChanged() argument
1523 if (!boundary.childBefore()) in boundaryNodeChildrenChanged()
1525 if (boundary.container() != container) in boundaryNodeChildrenChanged()
1527 boundary.invalidateOffset(); in boundaryNodeChildrenChanged()
1538 static inline void boundaryNodeChildrenWillBeRemoved(RangeBoundaryPoint& boundary, ContainerNode& c… in boundaryNodeChildrenWillBeRemoved() argument
1541 if (boundary.childBefore() == nodeToBeRemoved) { in boundaryNodeChildrenWillBeRemoved()
1542 boundary.setToStartOfNode(container); in boundaryNodeChildrenWillBeRemoved()
1546 for (Node* n = boundary.container(); n; n = n->parentNode()) { in boundaryNodeChildrenWillBeRemoved()
1548 boundary.setToStartOfNode(container); in boundaryNodeChildrenWillBeRemoved()
1562 static inline void boundaryNodeWillBeRemoved(RangeBoundaryPoint& boundary, Node& nodeToBeRemoved) in boundaryNodeWillBeRemoved() argument
[all …]
/external/ksoap2/kobjects/org/ksoap2/kobjects/mime/
DDecoder.java33 String boundary; field in Decoder
126 this.boundary = "--" + _bound; in Decoder()
139 if (line.startsWith(boundary)) in Decoder()
188 if (line.startsWith(boundary)) in readContent()
196 String deli = "\r\n" + boundary; in readContent()
/external/chromium_org/third_party/skia/src/core/
DSkDeviceLooper.cpp83 static bool next_tile(const SkIRect& boundary, int delta, SkIPoint* offset) { in next_tile() argument
85 if (offset->x() + delta < boundary.right()) { in next_tile()
91 offset->fX = boundary.left(); in next_tile()
92 if (offset->y() + delta < boundary.bottom()) { in next_tile()
/external/skia/src/core/
DSkDeviceLooper.cpp82 static bool next_tile(const SkIRect& boundary, int delta, SkIPoint* offset) { in next_tile() argument
84 if (offset->x() + delta < boundary.right()) { in next_tile()
90 offset->fX = boundary.left(); in next_tile()
91 if (offset->y() + delta < boundary.bottom()) { in next_tile()

1234567891011