Home
last modified time | relevance | path

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

1234567

/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/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);
Dscan-gram.l51 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/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/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()
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/
DBreakTransliterator.java76 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/okhttp/okhttp/src/main/java/com/squareup/okhttp/
DMultipartBuilder.java74 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/
DMultiPartWriter.java42 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()
DMultiPartOutputStream.java42 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/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()
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/compiler-rt/test/asan/TestCases/Posix/
Dlarge_allocator_unpoisons_on_free.cc15 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/compiler-rt/lib/asan/
Dasan_malloc_linux.cc65 INTERCEPTOR(void*, memalign, uptr boundary, uptr size) { in INTERCEPTOR() argument
67 return asan_memalign(boundary, size, &stack, FROM_MALLOC); in INTERCEPTOR()
70 INTERCEPTOR(void*, aligned_alloc, uptr boundary, uptr size) { in INTERCEPTOR() argument
72 return asan_memalign(boundary, size, &stack, FROM_MALLOC); in INTERCEPTOR()
75 INTERCEPTOR(void*, __libc_memalign, uptr boundary, uptr size) { in INTERCEPTOR() argument
77 void *res = asan_memalign(boundary, size, &stack, FROM_MALLOC); in INTERCEPTOR()
78 DTLS_on_libc_memalign(res, size * boundary); in INTERCEPTOR()
/external/icu/icu4c/source/test/perf/DateFmtPerf/
DDateFmtPerf.h62 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/
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/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
DXYPlot.java908 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/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/google-breakpad/src/common/windows/
Dhttp_upload.cc138 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()
/external/libavc/common/arm/
Dih264_deblk_chroma_a9.s62 @* boundary strength is set to 4
75 @* Alpha Value for the boundary
78 @* Beta Value for the boundary
138 @* boundary strength is set to 4
151 @* Alpha Value for the boundary
154 @* Beta Value for the boundary
232 @* boundary strength is less than 4
245 @* Alpha Value for the boundary
248 @* Beta Value for the boundary
334 @* boundary strength is less than 4
[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/nanohttpd/core/src/main/java/fi/iki/elonen/
DNanoHTTPD.java1020 … String boundary = contentTypeHeader.substring(boundaryContentStart, contentTypeHeader.length()); in parseBody() local
1021 if (boundary.startsWith("\"") && boundary.endsWith("\"")) { in parseBody()
1022 boundary = boundary.substring(1, boundary.length() - 1); in parseBody()
1025 decodeMultipartData(boundary, fbuf, in, parms, files); in parseBody()
1111 …private void decodeMultipartData(String boundary, ByteBuffer fbuf, BufferedReader in, Map<String, … in decodeMultipartData() argument
1114 int[] bpositions = getBoundaryPositions(fbuf, boundary.getBytes()); in decodeMultipartData()
1118 if (!mpline.contains(boundary)) { in decodeMultipartData()
1150 while (mpline != null && !mpline.contains(boundary)) { in decodeMultipartData()
1153 int d = mpline.indexOf(boundary); in decodeMultipartData()
1172 } while (mpline != null && !mpline.contains(boundary)); in decodeMultipartData()
[all …]
/external/v8/src/
Dstrtod.cc370 Bignum boundary; in BignumStrtod() local
372 boundary.AssignUInt64(upper_boundary.f()); in BignumStrtod()
376 boundary.MultiplyByPowerOfTen(-exponent); in BignumStrtod()
379 boundary.ShiftLeft(upper_boundary.e()); in BignumStrtod()
383 int comparison = Bignum::Compare(input, boundary); in BignumStrtod()

1234567