/external/icu/icu4c/source/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);
|
/external/icu/icu4c/source/i18n/ |
D | brktrans.cpp | 102 int32_t boundary; in handleTransliterate() local 103 …for(boundary = bi->next(); boundary != UBRK_DONE && boundary < offsets.limit; boundary = bi->next(… in handleTransliterate() 104 if (boundary == 0) continue; in handleTransliterate() 107 UChar32 cp = sText.char32At(boundary-1); in handleTransliterate() 112 cp = sText.char32At(boundary); in handleTransliterate() 117 boundaries->addElement(boundary, status); in handleTransliterate() 131 boundary = boundaries->popi(); in handleTransliterate() 132 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 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/ |
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/boringssl/src/crypto/asn1/ |
D | bio_ndef.c | 96 unsigned char **boundary; member 137 sarg.boundary = NULL; in BIO_new_NDEF() 145 ndef_aux->boundary = sarg.boundary; in BIO_new_NDEF() 180 if (!*ndef_aux->boundary) in ndef_prefix() 183 *plen = *ndef_aux->boundary - *pbuf; in ndef_prefix() 234 sarg.boundary = ndef_aux->boundary; in ndef_suffix() 248 if (!*ndef_aux->boundary) in ndef_suffix() 250 *pbuf = *ndef_aux->boundary; in ndef_suffix() 251 *plen = derlen - (*ndef_aux->boundary - ndef_aux->derbuf); in ndef_suffix()
|
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/ |
D | BreakTransliterator.java | 76 int boundary = 0; in handleTransliterate() local 90 …for(boundary = bi.first(); boundary != BreakIterator.DONE && boundary < pos.limit; boundary = bi.n… in handleTransliterate() 91 if (boundary == 0) continue; in handleTransliterate() 94 int cp = UTF16.charAt(text, boundary-1); in handleTransliterate() 99 cp = UTF16.charAt(text, boundary); in handleTransliterate() 110 boundaries[boundaryCount++] = boundary; in handleTransliterate() 124 boundary = boundaries[--boundaryCount]; in handleTransliterate() 125 text.replace(boundary, boundary, insertion); in handleTransliterate()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | BreakTransliterator.java | 77 int boundary = 0; in handleTransliterate() local 91 …for(boundary = bi.first(); boundary != BreakIterator.DONE && boundary < pos.limit; boundary = bi.n… in handleTransliterate() 92 if (boundary == 0) continue; in handleTransliterate() 95 int cp = UTF16.charAt(text, boundary-1); in handleTransliterate() 100 cp = UTF16.charAt(text, boundary); in handleTransliterate() 111 boundaries[boundaryCount++] = boundary; in handleTransliterate() 125 boundary = boundaries[--boundaryCount]; in handleTransliterate() 126 text.replace(boundary, boundary, insertion); in handleTransliterate()
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
D | MultipartBuilder.java | 74 private final ByteString boundary; field in MultipartBuilder 91 public MultipartBuilder(String boundary) { in MultipartBuilder() argument 92 this.boundary = ByteString.encodeUtf8(boundary); in MultipartBuilder() 193 return new MultipartRequestBody(type, boundary, partHeaders, partBodies); in build() 197 private final ByteString boundary; field in MultipartBuilder.MultipartRequestBody 203 public MultipartRequestBody(MediaType type, ByteString boundary, List<Headers> partHeaders, in MultipartRequestBody() argument 207 this.boundary = boundary; in MultipartRequestBody() 208 this.contentType = MediaType.parse(type + "; boundary=" + boundary.utf8()); in MultipartRequestBody() 242 sink.write(boundary); in writeOrCountBytes() 284 sink.write(boundary); in writeOrCountBytes()
|
/external/jetty/src/java/org/eclipse/jetty/util/ |
D | MultiPartWriter.java | 42 private String boundary; field in MultiPartWriter 52 boundary = "jetty"+System.identityHashCode(this)+ in MultiPartWriter() 69 out.write(boundary); in close() 79 return boundary; in getBoundary() 91 out.write(boundary); in startPart() 120 out.write(boundary); in startPart()
|
D | MultiPartOutputStream.java | 42 private String boundary; field in MultiPartOutputStream 54 boundary = "jetty"+System.identityHashCode(this)+ in MultiPartOutputStream() 56 boundaryBytes=boundary.getBytes(StringUtil.__ISO_8859_1); in MultiPartOutputStream() 84 return boundary; in getBoundary()
|
/external/libmicrohttpd/src/microhttpd/ |
D | postprocessor.c | 145 const char *boundary; member 278 const char *boundary; in MHD_create_post_processor() local 288 boundary = NULL; in MHD_create_post_processor() 295 boundary = in MHD_create_post_processor() 298 boundary = strstr (boundary, "boundary="); in MHD_create_post_processor() 299 if (NULL == boundary) in MHD_create_post_processor() 301 boundary += strlen ("boundary="); in MHD_create_post_processor() 302 blen = strlen (boundary); in MHD_create_post_processor() 305 if ( (boundary[0] == '"') && (boundary[blen - 1] == '"') ) in MHD_create_post_processor() 308 ++boundary; in MHD_create_post_processor() [all …]
|
/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()
|
/external/compiler-rt/test/asan/TestCases/Posix/ |
D | large_allocator_unpoisons_on_free.cc | 15 void *my_memalign(size_t boundary, size_t size) { in my_memalign() argument 16 return memalign(boundary, size); in my_memalign() 19 void *my_memalign(size_t boundary, size_t size) { in my_memalign() argument 21 posix_memalign(&p, boundary, size); in my_memalign()
|
/external/tpm2/include/tpm2/ |
D | TpmBuildSwitches.h | 16 #define ALIGN_TO(boundary) __attribute__ ((aligned(boundary))) argument 19 #define ALIGN_TO(boundary) __declspec(align(boundary)) argument
|
/external/compiler-rt/lib/asan/ |
D | asan_malloc_linux.cc | 82 INTERCEPTOR(void*, memalign, uptr boundary, uptr size) { in INTERCEPTOR() argument 84 return asan_memalign(boundary, size, &stack, FROM_MALLOC); in INTERCEPTOR() 87 INTERCEPTOR(void*, aligned_alloc, uptr boundary, uptr size) { in INTERCEPTOR() argument 89 return asan_memalign(boundary, size, &stack, FROM_MALLOC); in INTERCEPTOR() 92 INTERCEPTOR(void*, __libc_memalign, uptr boundary, uptr size) { in INTERCEPTOR() argument 94 void *res = asan_memalign(boundary, size, &stack, FROM_MALLOC); in INTERCEPTOR() 95 DTLS_on_libc_memalign(res, size * boundary); in INTERCEPTOR()
|
/external/webrtc/webrtc/system_wrappers/include/ |
D | metrics.h | 116 #define RTC_HISTOGRAM_ENUMERATION(name, sample, boundary) \ argument 118 webrtc::metrics::HistogramFactoryGetEnumeration(name, boundary)) 122 #define RTC_HISTOGRAM_ENUMERATION_SPARSE(name, sample, boundary) \ argument 124 webrtc::metrics::HistogramFactoryGetEnumeration(name, boundary)) 174 const std::string& name, int boundary);
|
/external/icu/icu4c/source/test/perf/DateFmtPerf/ |
D | DateFmtPerf.h | 62 BreakIterator* boundary; in call() local 68 boundary = BreakIterator::createWordInstance("en", *status); in call() 69 boundary->setText(str); in call() 71 int32_t start = boundary->first(); in call() 72 for (int32_t end = boundary->next(); in call() 74 start = end, end = boundary->next()) in call() 76 printTextRange( *boundary, start, end ); in call() 85 boundary = BreakIterator::createCharacterInstance(Locale::getUS(), *status); in call() 86 boundary->setText(str); in call() 88 int32_t start = boundary->first(); in call() [all …]
|
/external/ksoap2/kobjects/org/ksoap2/kobjects/mime/ |
D | Decoder.java | 33 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/skia/src/core/ |
D | SkDeviceLooper.cpp | 78 static bool next_tile(const SkIRect& boundary, int delta, SkIPoint* offset) { in next_tile() argument 80 if (offset->x() + delta < boundary.right()) { in next_tile() 86 offset->fX = boundary.left(); in next_tile() 87 if (offset->y() + delta < boundary.bottom()) { in next_tile()
|
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/ |
D | XYPlot.java | 908 protected synchronized void setUserMaxX(Number boundary) { in setUserMaxX() argument 914 this.userMaxX = boundary; in setUserMaxX() 923 public synchronized void setDomainUpperBoundary(Number boundary, BoundaryMode mode) { in setDomainUpperBoundary() argument 924 setUserMaxX((mode == BoundaryMode.FIXED) ? boundary : null); in setDomainUpperBoundary() 933 protected synchronized void setUserMinX(Number boundary) { in setUserMinX() argument 939 this.userMinX = boundary; in setUserMinX() 948 public synchronized void setDomainLowerBoundary(Number boundary, BoundaryMode mode) { in setDomainLowerBoundary() argument 949 setUserMinX((mode == BoundaryMode.FIXED) ? boundary : null); in setDomainLowerBoundary() 959 protected synchronized void setUserMaxY(Number boundary) { in setUserMaxY() argument 965 this.userMaxY = boundary; in setUserMaxY() [all …]
|
/external/curl/tests/data/ |
D | test554 | 62 s/boundary=------------------------[a-z0-9]*/boundary=----------------------------/ 65 # boundary string and since 5 of them are in the body contents, we see 73 Content-Type: multipart/form-data; boundary=---------------------------- 104 Content-Type: multipart/form-data; boundary=----------------------------
|
D | test587 | 39 s/boundary=------------------------[a-z0-9]*/boundary=----------------------------/ 47 Content-Type: multipart/form-data; boundary=----------------------------
|
/external/google-breakpad/src/common/windows/ |
D | http_upload.cc | 138 wstring boundary = GenerateMultipartBoundary(); in SendRequest() local 139 wstring content_type_header = GenerateRequestHeader(boundary); in SendRequest() 147 file_part_name, boundary, &request_body)) { in SendRequest() 263 wstring HTTPUpload::GenerateRequestHeader(const wstring &boundary) { in GenerateRequestHeader() argument 265 header += boundary; in GenerateRequestHeader() 273 const wstring &boundary, in GenerateRequestBody() argument 280 string boundary_str = WideToUTF8(boundary); in GenerateRequestBody()
|