/external/icu4c/samples/break/ |
D | break.cpp | 44 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 …]
|
D | ubreak.c | 33 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/bison/src/ |
D | location.h | 47 } 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);
|
D | scan-gram.l | 51 static boundary scanner_cursor; 70 static boundary bracketed_id_start; 82 static void unexpected_eof (boundary, char const *); 83 static void unexpected_newline (boundary, char const *); 134 boundary code_start = scanner_cursor; 138 boundary token_start PACIFY_CC (= scanner_cursor); 880 unexpected_end (boundary start, char const *msgid, char const *token_end) 899 unexpected_eof (boundary start, char const *token_end) 910 unexpected_newline (boundary start, char const *token_end)
|
/external/icu4c/i18n/ |
D | brktrans.cpp | 96 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/ |
D | Tutorial_sparse_example_details.cpp | 9 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/ |
D | ContentImpl.java | 17 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/openssl/crypto/asn1/ |
D | bio_ndef.c | 91 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/webkit/Source/WebCore/platform/network/ |
D | FormDataBuilder.cpp | 103 Vector<char> boundary; in generateUniqueBoundaryString() local 124 append(boundary, "----WebKitFormBoundary"); in generateUniqueBoundaryString() 137 boundary.append(randomBytes); in generateUniqueBoundaryString() 138 boundary.append(0); // Add a 0 at the end so we can use this as a C-style string. in generateUniqueBoundaryString() 139 return boundary; in generateUniqueBoundaryString() 142 void FormDataBuilder::beginMultiPartHeader(Vector<char>& buffer, const CString& boundary, const CSt… in beginMultiPartHeader() argument 144 addBoundaryToMultiPartHeader(buffer, boundary); in beginMultiPartHeader() 153 void FormDataBuilder::addBoundaryToMultiPartHeader(Vector<char>& buffer, const CString& boundary, b… in addBoundaryToMultiPartHeader() argument 156 append(buffer, boundary); in addBoundaryToMultiPartHeader()
|
D | FormDataBuilder.h | 39 static void beginMultiPartHeader(Vector<char>&, const CString& boundary, const CString& name); 40 …static void addBoundaryToMultiPartHeader(Vector<char>&, const CString& boundary, bool isLastBounda…
|
/external/speex/libspeex/ |
D | vq.c | 51 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()
|
D | vq.h | 40 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/icu4c/test/perf/DateFmtPerf/ |
D | DateFmtPerf.h | 61 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/chrome/browser/autofill/ |
D | autofill_type_unittest.cc | 42 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/webkit/Source/WebCore/wml/ |
D | WMLGoElement.cpp | 164 Vector<char> boundary = FormDataBuilder::generateUniqueBoundaryString(); in preparePOSTRequest() local 165 data = createFormData(boundary.data()); in preparePOSTRequest() 166 … request.setHTTPContentType(m_formAttributes.encodingType() + "; boundary=" + boundary.data()); in preparePOSTRequest() 191 PassRefPtr<FormData> WMLGoElement::createFormData(const CString& boundary) in createFormData() argument 208 FormDataBuilder::beginMultiPartHeader(header, boundary, key); in createFormData() 221 FormDataBuilder::addBoundaryToMultiPartHeader(encodedData, boundary, true); in createFormData()
|
/external/webkit/Source/WebCore/dom/ |
D | Range.cpp | 1727 static inline void boundaryNodeChildrenChanged(RangeBoundaryPoint& boundary, ContainerNode* contain… in boundaryNodeChildrenChanged() argument 1729 if (!boundary.childBefore()) in boundaryNodeChildrenChanged() 1731 if (boundary.container() != container) in boundaryNodeChildrenChanged() 1733 boundary.invalidateOffset(); in boundaryNodeChildrenChanged() 1744 static inline void boundaryNodeChildrenWillBeRemoved(RangeBoundaryPoint& boundary, ContainerNode* c… in boundaryNodeChildrenWillBeRemoved() argument 1747 if (boundary.childBefore() == nodeToBeRemoved) { in boundaryNodeChildrenWillBeRemoved() 1748 boundary.setToStartOfNode(container); in boundaryNodeChildrenWillBeRemoved() 1752 for (Node* n = boundary.container(); n; n = n->parentNode()) { in boundaryNodeChildrenWillBeRemoved() 1754 boundary.setToStartOfNode(container); in boundaryNodeChildrenWillBeRemoved() 1769 static inline void boundaryNodeWillBeRemoved(RangeBoundaryPoint& boundary, Node* nodeToBeRemoved) in boundaryNodeWillBeRemoved() argument [all …]
|
/external/webkit/Source/WebCore/loader/ |
D | FormSubmission.cpp | 124 …, PassRefPtr<FormState> state, PassRefPtr<FormData> data, const String& boundary, bool lockHistory… in FormSubmission() argument 131 , m_boundary(boundary) in FormSubmission() 193 String boundary; in create() local 197 boundary = formData->boundary().data(); in create() 210 …getOrBaseTarget, encodingType, formState.release(), formData.release(), boundary, lockHistory, eve… in create()
|
/external/opencv/cv/src/ |
D | _cvkdtree.hpp | 72 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/tinyalsa/ |
D | pcm.c | 164 unsigned int boundary; member 376 frames += pcm->boundary; in pcm_get_htimestamp() 377 else if (frames > (int)pcm->boundary) in pcm_get_htimestamp() 378 frames -= pcm->boundary; in pcm_get_htimestamp() 722 pcm->boundary = sparams.boundary = pcm->buffer_size; in pcm_open() 724 while (pcm->boundary * 2 <= INT_MAX - pcm->buffer_size) in pcm_open() 725 pcm->boundary *= 2; in pcm_open() 786 avail += pcm->boundary; in pcm_mmap_playback_avail() 787 else if (avail > (int)pcm->boundary) in pcm_mmap_playback_avail() 788 avail -= pcm->boundary; in pcm_mmap_playback_avail() [all …]
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common.h | 211 INLINE uptr RoundUpTo(uptr size, uptr boundary) { in RoundUpTo() argument 212 CHECK(IsPowerOfTwo(boundary)); in RoundUpTo() 213 return (size + boundary - 1) & ~(boundary - 1); in RoundUpTo() 216 INLINE uptr RoundDownTo(uptr x, uptr boundary) { in RoundDownTo() argument 217 return x & ~(boundary - 1); in RoundDownTo()
|
/external/harfbuzz/src/ |
D | harfbuzz-tibetan.c | 260 hb_uint32 boundary = tibetan_nextSyllableBoundary(text, from+i, end, &invalid) - from; in HB_TibetanAttributes() local 264 if (boundary > len-1) boundary = len; in HB_TibetanAttributes() 266 while (i < boundary) { in HB_TibetanAttributes() 271 assert(i == boundary); in HB_TibetanAttributes()
|
/external/qemu/hw/ |
D | ne2000.c | 128 uint8_t boundary; member 203 int avail, index, boundary; in ne2000_buffer_full() local 206 boundary = s->boundary << 8; in ne2000_buffer_full() 207 if (index < boundary) in ne2000_buffer_full() 208 avail = boundary - index; in ne2000_buffer_full() 210 avail = (s->stop - s->start) - (index - boundary); in ne2000_buffer_full() 371 s->boundary = val; in ne2000_ioport_write() 437 ret = s->boundary; in ne2000_ioport_read() 664 qemu_put_8s(f, &s->boundary); in ne2000_save() 706 qemu_get_8s(f, &s->boundary); in ne2000_load()
|
/external/compiler-rt/lib/asan/ |
D | asan_malloc_linux.cc | 29 DECLARE_REAL_AND_INTERCEPTOR(void*, memalign, uptr boundary, uptr size) 98 INTERCEPTOR(void*, memalign, uptr boundary, uptr size) { in INTERCEPTOR() argument 100 return asan_memalign(boundary, size, &stack, FROM_MALLOC); in INTERCEPTOR()
|
/external/v8/src/ |
D | strtod.cc | 390 Bignum boundary; in BignumStrtod() local 392 boundary.AssignUInt64(upper_boundary.f()); in BignumStrtod() 396 boundary.MultiplyByPowerOfTen(-exponent); in BignumStrtod() 399 boundary.ShiftLeft(upper_boundary.e()); in BignumStrtod() 403 int comparison = Bignum::Compare(input, boundary); in BignumStrtod()
|
/external/e2fsprogs/tests/progs/test_data/ |
D | test.brel | 14 # Test boundary cases for brel_put 19 # Test other boundary cases
|