Home
last modified time | relevance | path

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

1234567891011

/external/icu4c/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/icu4c/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 coeffcieint in insertCoefficient()
15 else if(j==-1 || j==n) b(id) -= w * boundary(i); // constrained coeffcieint 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/openssl/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/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.append(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/chromium_org/third_party/icu/source/test/perf/DateFmtPerf/
DDateFmtPerf.h60 BreakIterator* boundary; in call() local
66 boundary = BreakIterator::createWordInstance("en", *status); in call()
67 boundary->setText(str); in call()
69 int32_t start = boundary->first(); in call()
70 for (int32_t end = boundary->next(); in call()
72 start = end, end = boundary->next()) in call()
74 printTextRange( *boundary, start, end ); in call()
83 boundary = BreakIterator::createCharacterInstance(Locale::getUS(), *status); in call()
84 boundary->setText(str); in call()
86 int32_t start = boundary->first(); in call()
[all …]
/external/chromium_org/chrome/browser/extensions/api/webrtc_logging_private/
Dwebrtc_logging_private_apitest.cc202 const char boundary[] = "------**--yradnuoBgoLtrapitluMklaTelgooG--**----"; in IN_PROC_BROWSER_TEST_F() local
211 size_t zip_length = multipart.find(boundary, zip_pos); in IN_PROC_BROWSER_TEST_F()
223 EXPECT_STREQ(&boundary[0], multipart_lines[0].c_str()); in IN_PROC_BROWSER_TEST_F()
229 EXPECT_STREQ(&boundary[0], multipart_lines[4].c_str()); in IN_PROC_BROWSER_TEST_F()
236 EXPECT_STREQ(&boundary[0], multipart_lines[8].c_str()); in IN_PROC_BROWSER_TEST_F()
242 EXPECT_STREQ(&boundary[0], multipart_lines[12].c_str()); in IN_PROC_BROWSER_TEST_F()
248 EXPECT_STREQ(&boundary[0], multipart_lines[16].c_str()); in IN_PROC_BROWSER_TEST_F()
254 EXPECT_STREQ(&boundary[0], multipart_lines[20].c_str()); in IN_PROC_BROWSER_TEST_F()
260 EXPECT_STREQ(&boundary[0], multipart_lines[24].c_str()); in IN_PROC_BROWSER_TEST_F()
268 std::string final_delimiter = boundary; in IN_PROC_BROWSER_TEST_F()
/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/icu4c/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/ui/base/accessibility/
Daccessible_text_utils.cc14 TextBoundaryType boundary, in FindAccessibleTextBoundary() argument
20 if (boundary == CHAR_BOUNDARY) { in FindAccessibleTextBoundary()
25 } else if (boundary == LINE_BOUNDARY) { in FindAccessibleTextBoundary()
60 switch (boundary) { in FindAccessibleTextBoundary()
/external/chromium/chrome/browser/autofill/
Dautofill_type_unittest.cc42 AutofillType boundary(MAX_VALID_FIELD_TYPE); in TEST() local
43 EXPECT_EQ(UNKNOWN_TYPE, boundary.field_type()); in TEST()
44 EXPECT_EQ(AutofillType::NO_GROUP, boundary.group()); in TEST()
45 EXPECT_EQ(AutofillType::NO_SUBGROUP, boundary.subgroup()); in TEST()
/external/chromium_org/base/i18n/
Dbreak_iterator.cc104 UBool boundary = ubrk_isBoundary(iter, static_cast<int32_t>(position)); in IsEndOfWord() local
106 return (!!boundary && status != UBRK_WORD_NONE); in IsEndOfWord()
114 UBool boundary = ubrk_isBoundary(iter, static_cast<int32_t>(position)); in IsStartOfWord() local
117 return (!!boundary && next_status != UBRK_WORD_NONE); in IsStartOfWord()
/external/chromium_org/third_party/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()
/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()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DRange.cpp1653 static inline void boundaryNodeChildrenChanged(RangeBoundaryPoint& boundary, ContainerNode* contain… in boundaryNodeChildrenChanged() argument
1655 if (!boundary.childBefore()) in boundaryNodeChildrenChanged()
1657 if (boundary.container() != container) in boundaryNodeChildrenChanged()
1659 boundary.invalidateOffset(); in boundaryNodeChildrenChanged()
1670 static inline void boundaryNodeChildrenWillBeRemoved(RangeBoundaryPoint& boundary, ContainerNode* c… in boundaryNodeChildrenWillBeRemoved() argument
1673 if (boundary.childBefore() == nodeToBeRemoved) { in boundaryNodeChildrenWillBeRemoved()
1674 boundary.setToStartOfNode(container); in boundaryNodeChildrenWillBeRemoved()
1678 for (Node* n = boundary.container(); n; n = n->parentNode()) { in boundaryNodeChildrenWillBeRemoved()
1680 boundary.setToStartOfNode(container); in boundaryNodeChildrenWillBeRemoved()
1695 static inline void boundaryNodeWillBeRemoved(RangeBoundaryPoint& boundary, Node& nodeToBeRemoved) in boundaryNodeWillBeRemoved() argument
[all …]
/external/opencv/cv/src/
D_cvkdtree.hpp72 scalar_type boundary; // left if deref(value,dim)<=boundary, otherwise right member
189 n.boundary = deref(ctor(*median), dim); in insert()
210 if (deref(p, n.dim) <= n.boundary) // left in remove()
291 nodes[i].boundary << std::endl; in print()
343 if (d[n.dim] <= n.boundary) { // left in bbf_branch()
344 pq_alternate(n.right, pq, n.boundary - d[n.dim]); in bbf_branch()
347 pq_alternate(n.left, pq, d[n.dim] - n.boundary); in bbf_branch()
436 if (bounds_min[n.dim] <= n.boundary) in find_ortho_range()
438 if (bounds_max[n.dim] > n.boundary) in find_ortho_range()
/external/chromium_org/third_party/WebKit/Source/core/loader/
DFormSubmission.cpp143 …, PassRefPtr<FormState> state, PassRefPtr<FormData> data, const String& boundary, PassRefPtr<Event… in FormSubmission() argument
150 , m_boundary(boundary) in FormSubmission()
225 String boundary; in create() local
229 boundary = formData->boundary().data(); in create()
243 …nURL, targetOrBaseTarget, encodingType, formState.release(), formData.release(), boundary, event)); in create()
/external/chromium_org/third_party/WebKit/Source/modules/speech/
DSpeechSynthesis.cpp174 …(PassRefPtr<PlatformSpeechSynthesisUtterance> utterance, SpeechBoundary boundary, unsigned charInd… in boundaryEventOccurred() argument
179 switch (boundary) { in boundaryEventOccurred()
181 …fireEvent(EventTypeNames::boundary, static_cast<SpeechSynthesisUtterance*>(utterance->client()), c… in boundaryEventOccurred()
184 …fireEvent(EventTypeNames::boundary, static_cast<SpeechSynthesisUtterance*>(utterance->client()), c… in boundaryEventOccurred()
/external/chromium_org/components/breakpad/tools/
Ddmp2minidump.py25 boundary = dump.readline().strip()[2:]
26 data = parse_multipart(dump, {'boundary': boundary})

1234567891011