Home
last modified time | relevance | path

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

12345678910>>...32

/third_party/icu/icu4c/source/samples/break/
Dbreak.cpp51 void printEachForward( BreakIterator& boundary) in printEachForward() argument
53 int32_t start = boundary.first(); in printEachForward()
54 for (int32_t end = boundary.next(); in printEachForward()
56 start = end, end = boundary.next()) in printEachForward()
58 printTextRange( boundary, start, end ); in printEachForward()
63 void printEachBackward( BreakIterator& boundary) in printEachBackward() argument
65 int32_t end = boundary.last(); in printEachBackward()
66 for (int32_t start = boundary.previous(); in printEachBackward()
68 end = start, start = boundary.previous()) in printEachBackward()
70 printTextRange( boundary, start, end ); in printEachBackward()
[all …]
Dubreak.c39 void printEachForward( UBreakIterator* boundary, UChar* str) { in printEachForward() argument
41 int32_t start = ubrk_first(boundary); in printEachForward()
42 for (end = ubrk_next(boundary); end != UBRK_DONE; start = end, end = in printEachForward()
43 ubrk_next(boundary)) { in printEachForward()
50 void printEachBackward( UBreakIterator* boundary, UChar* str) { in printEachBackward() argument
52 int32_t end = ubrk_last(boundary); in printEachBackward()
53 for (start = ubrk_previous(boundary); start != UBRK_DONE; end = start, in printEachBackward()
54 start =ubrk_previous(boundary)) { in printEachBackward()
60 void printFirst(UBreakIterator* boundary, UChar* str) { in printFirst() argument
62 int32_t start = ubrk_first(boundary); in printFirst()
[all …]
/third_party/skia/third_party/externals/icu/source/samples/break/
Dbreak.cpp51 void printEachForward( BreakIterator& boundary) in printEachForward() argument
53 int32_t start = boundary.first(); in printEachForward()
54 for (int32_t end = boundary.next(); in printEachForward()
56 start = end, end = boundary.next()) in printEachForward()
58 printTextRange( boundary, start, end ); in printEachForward()
63 void printEachBackward( BreakIterator& boundary) in printEachBackward() argument
65 int32_t end = boundary.last(); in printEachBackward()
66 for (int32_t start = boundary.previous(); in printEachBackward()
68 end = start, start = boundary.previous()) in printEachBackward()
70 printTextRange( boundary, start, end ); in printEachBackward()
[all …]
Dubreak.c39 void printEachForward( UBreakIterator* boundary, UChar* str) { in printEachForward() argument
41 int32_t start = ubrk_first(boundary); in printEachForward()
42 for (end = ubrk_next(boundary); end != UBRK_DONE; start = end, end = in printEachForward()
43 ubrk_next(boundary)) { in printEachForward()
50 void printEachBackward( UBreakIterator* boundary, UChar* str) { in printEachBackward() argument
52 int32_t end = ubrk_last(boundary); in printEachBackward()
53 for (start = ubrk_previous(boundary); start != UBRK_DONE; end = start, in printEachBackward()
54 start =ubrk_previous(boundary)) { in printEachBackward()
60 void printFirst(UBreakIterator* boundary, UChar* str) { in printFirst() argument
62 int32_t start = ubrk_first(boundary); in printFirst()
[all …]
/third_party/ffmpeg/libavformat/
Dmpjpegdec.c33 char *boundary; member
109 av_freep(&mpjpeg->boundary); in mpjpeg_read_close()
133 char boundary[70 + 2 + 1] = {0}; in mpjpeg_read_header() local
138 ret = get_line(s->pb, boundary, sizeof(boundary)); in mpjpeg_read_header()
141 } while (!boundary[0]); in mpjpeg_read_header()
143 if (strncmp(boundary, "--", 2)) in mpjpeg_read_header()
299 if (mpjpeg->boundary == NULL) { in mpjpeg_read_packet()
300 uint8_t* boundary = NULL; in mpjpeg_read_packet() local
302 boundary = mpjpeg_get_boundary(s->pb); in mpjpeg_read_packet()
304 if (boundary != NULL) { in mpjpeg_read_packet()
[all …]
/third_party/skia/third_party/externals/icu/source/i18n/
Dbrktrans.cpp106 int32_t boundary; in handleTransliterate() local
107 …for(boundary = bi->next(); boundary != UBRK_DONE && boundary < offsets.limit; boundary = bi->next(… in handleTransliterate()
108 if (boundary == 0) continue; in handleTransliterate()
111 UChar32 cp = sText.char32At(boundary-1); in handleTransliterate()
116 cp = sText.char32At(boundary); in handleTransliterate()
121 boundaries->addElement(boundary, status); in handleTransliterate()
135 boundary = boundaries->popi(); in handleTransliterate()
136 text.handleReplaceBetween(boundary, boundary, fInsertion); in handleTransliterate()
/third_party/icu/icu4c/source/i18n/
Dbrktrans.cpp106 int32_t boundary; in handleTransliterate() local
107 …for(boundary = bi->next(); boundary != UBRK_DONE && boundary < offsets.limit; boundary = bi->next(… in handleTransliterate()
108 if (boundary == 0) continue; in handleTransliterate()
111 UChar32 cp = sText.char32At(boundary-1); in handleTransliterate()
116 cp = sText.char32At(boundary); in handleTransliterate()
121 boundaries->addElement(boundary, status); in handleTransliterate()
135 boundary = boundaries->popi(); in handleTransliterate()
136 text.handleReplaceBetween(boundary, boundary, fInsertion); in handleTransliterate()
/third_party/node/deps/icu-small/source/i18n/
Dbrktrans.cpp106 int32_t boundary; in handleTransliterate() local
107 …for(boundary = bi->next(); boundary != UBRK_DONE && boundary < offsets.limit; boundary = bi->next(… in handleTransliterate()
108 if (boundary == 0) continue; in handleTransliterate()
111 UChar32 cp = sText.char32At(boundary-1); in handleTransliterate()
116 cp = sText.char32At(boundary); in handleTransliterate()
121 boundaries->addElement(boundary, status); in handleTransliterate()
135 boundary = boundaries->popi(); in handleTransliterate()
136 text.handleReplaceBetween(boundary, boundary, fInsertion); in handleTransliterate()
/third_party/ltp/testcases/kernel/mem/hugetlb/hugeshmat/
Dhugeshmat04.c51 unsigned long boundary = BOUNDARY; in shared_hugepage() local
57 while (boundary <= BOUNDARY_MAX in shared_hugepage()
58 && range_is_mapped(boundary, boundary+SIZE)) in shared_hugepage()
59 boundary += 128*1024*1024; in shared_hugepage()
60 if (boundary > BOUNDARY_MAX) in shared_hugepage()
63 tst_res(TINFO, "attaching at 0x%lx", boundary); in shared_hugepage()
64 buf = shmat(shmid, (void *)boundary, SHM_RND | 0777); in shared_hugepage()
/third_party/skia/third_party/externals/spirv-cross/shaders/flatten/
Dswizzle.flatten.vert6 // 16b boundary
8 // 16b boundary
11 // 16b boundary
13 // 16b boundary (vec3 is aligned to 16b)
15 // 16b boundary
18 // 16b boundary
23 // 16b boundary
26 // 16b boundary (vec2 before us is aligned to 8b)
/third_party/node/deps/openssl/openssl/crypto/asn1/
Dbio_ndef.c40 unsigned char **boundary; member
93 sarg.boundary = NULL; in BIO_new_NDEF()
116 ndef_aux->boundary = sarg.boundary; in BIO_new_NDEF()
152 if (*ndef_aux->boundary == NULL) in ndef_prefix()
155 *plen = *ndef_aux->boundary - *pbuf; in ndef_prefix()
210 sarg.boundary = ndef_aux->boundary; in ndef_suffix()
227 if (*ndef_aux->boundary == NULL) in ndef_suffix()
229 *pbuf = *ndef_aux->boundary; in ndef_suffix()
230 *plen = derlen - (*ndef_aux->boundary - ndef_aux->derbuf); in ndef_suffix()
/third_party/openssl/crypto/asn1/
Dbio_ndef.c40 unsigned char **boundary; member
93 sarg.boundary = NULL; in BIO_new_NDEF()
116 ndef_aux->boundary = sarg.boundary; in BIO_new_NDEF()
152 if (*ndef_aux->boundary == NULL) in ndef_prefix()
155 *plen = *ndef_aux->boundary - *pbuf; in ndef_prefix()
210 sarg.boundary = ndef_aux->boundary; in ndef_suffix()
227 if (*ndef_aux->boundary == NULL) in ndef_suffix()
229 *pbuf = *ndef_aux->boundary; in ndef_suffix()
230 *plen = derlen - (*ndef_aux->boundary - ndef_aux->derbuf); in ndef_suffix()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
DBreakTransliterator.java80 int boundary = 0; in handleTransliterate() local
94 …for(boundary = bi.first(); boundary != BreakIterator.DONE && boundary < pos.limit; boundary = bi.n… in handleTransliterate()
95 if (boundary == 0) continue; in handleTransliterate()
98 int cp = UTF16.charAt(text, boundary-1); in handleTransliterate()
103 cp = UTF16.charAt(text, boundary); in handleTransliterate()
114 boundaries[boundaryCount++] = boundary; in handleTransliterate()
128 boundary = boundaries[--boundaryCount]; in handleTransliterate()
129 text.replace(boundary, boundary, insertion); in handleTransliterate()
/third_party/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
DBreakTransliterator.java79 int boundary = 0; in handleTransliterate() local
93 …for(boundary = bi.first(); boundary != BreakIterator.DONE && boundary < pos.limit; boundary = bi.n… in handleTransliterate()
94 if (boundary == 0) continue; in handleTransliterate()
97 int cp = UTF16.charAt(text, boundary-1); in handleTransliterate()
102 cp = UTF16.charAt(text, boundary); in handleTransliterate()
113 boundaries[boundaryCount++] = boundary; in handleTransliterate()
127 boundary = boundaries[--boundaryCount]; in handleTransliterate()
128 text.replace(boundary, boundary, insertion); in handleTransliterate()
/third_party/node/test/fixtures/wpt/FileAPI/support/
Dsend-file-formdata-helper.js64 const boundary = formDataLines[0]; constant
67 boundary + "--",
68 `${fileBaseName}: multipart form data must end with ${boundary}--: ${
75 boundary,
79 boundary,
83 boundary,
89 boundary + "--",
Dsend-file-form-helper.js236 const boundary = formDataLines[0]; constant
239 boundary + '--',
240 `${fileBaseName}: multipart form data must end with ${boundary}--: ${
253 boundary,
257 boundary,
263 boundary,
267 boundary,
273 boundary + '--',
/third_party/skia/third_party/externals/spirv-cross/shaders-msl/flatten/
Dswizzle.flatten.vert6 // 16b boundary
8 // 16b boundary
11 // 16b boundary
13 // 16b boundary (vec3 is aligned to 16b)
15 // 16b boundary
18 // 16b boundary
23 // 16b boundary
26 // 16b boundary (vec2 before us is aligned to 8b)
/third_party/typescript/tests/baselines/reference/
DclassStaticBlock8.errors.txt1 …ssStaticBlock/classStaticBlock8.ts(6,21): error TS1107: Jump target cannot cross function boundary.
2 …ssStaticBlock/classStaticBlock8.ts(9,21): error TS1107: Jump target cannot cross function boundary.
3 …sStaticBlock/classStaticBlock8.ts(12,21): error TS1107: Jump target cannot cross function boundary.
4 …sStaticBlock/classStaticBlock8.ts(15,21): error TS1107: Jump target cannot cross function boundary.
15 !!! error TS1107: Jump target cannot cross function boundary.
20 !!! error TS1107: Jump target cannot cross function boundary.
25 !!! error TS1107: Jump target cannot cross function boundary.
30 !!! error TS1107: Jump target cannot cross function boundary.
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/
Dpostprocessor.c145 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 …]
/third_party/skia/src/core/
DSkMarkerStack.cpp10 void SkMarkerStack::setMarker(uint32_t id, const SkM44& mx, void* boundary) { in setMarker() argument
19 if (it->fBoundary != boundary) { // we've gone past the save-frame in setMarker()
29 fStack.push_back({boundary, mx, inv, id}); in setMarker()
58 void SkMarkerStack::restore(void* boundary) { in restore() argument
59 while (!fStack.empty() && fStack.back().fBoundary == boundary) { in restore()
/third_party/python/Lib/test/test_email/data/
Dmsg_38.txt2 Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa0"
5 Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa1"
9 Content-Type: multipart/alternative; boundary="----- =_aaaaaaaaaa2"
19 Unlike the test test_nested-multiples-with-internal-boundary, this
20 piece of text not only contains the outer boundary tags
49 Content-Type: multipart/alternative; boundary="----- =_aaaaaaaaaa3"
71 Content-Type: multipart/alternative; boundary="----- =_aaaaaaaaaa4"
Dmsg_39.txt2 Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa0"
5 Content-Type: multipart/mixed; boundary="----- =_aaaaaaaaaa1"
9 Content-Type: multipart/alternative; boundary="----- =_aaaaaaaaaa1"
31 Content-Type: multipart/alternative; boundary="----- =_aaaaaaaaaa1"
53 Content-Type: multipart/alternative; boundary="----- =_aaaaaaaaaa1"
/third_party/skia/src/gpu/geometry/
DGrAATriangulator.cpp184 void GrAATriangulator::simplifyBoundary(EdgeList* boundary, const Comparator& c) const { in simplifyBoundary() argument
185 Edge* prevEdge = boundary->fTail; in simplifyBoundary()
188 for (Edge* e = boundary->fHead; e != nullptr;) { in simplifyBoundary()
197 boundary->remove(prevEdge); in simplifyBoundary()
198 boundary->remove(e); in simplifyBoundary()
199 prevEdge = boundary->fTail; in simplifyBoundary()
200 e = boundary->fHead; in simplifyBoundary()
211 boundary->insert(join, e); in simplifyBoundary()
212 boundary->remove(prevEdge); in simplifyBoundary()
213 boundary->remove(e); in simplifyBoundary()
[all …]
/third_party/python/Lib/email/
Dgenerator.py279 boundary = msg.get_boundary()
280 if not boundary:
284 boundary = self._make_boundary(alltext)
285 msg.set_boundary(boundary)
295 self.write('--' + boundary + self._NL)
304 self.write(self._NL + '--' + boundary + self._NL)
308 self.write(self._NL + '--' + boundary + '--' + self._NL)
378 boundary = ('=' * 15) + (_fmt % token) + '=='
380 return boundary
381 b = boundary
[all …]
/third_party/icu/docs/userguide/boundaryanalysis/
Dindex.md25 Text boundary analysis is the process of locating linguistic boundaries while
50 This location will always be a text boundary. Clients can move the location
51 forward to the next boundary or backward to the previous boundary. Clients can
52 also check if a particular location within a source text is on a boundary or
53 find the boundary which is before or after a particular location.
67 Each type of boundary is found in accordance with the rules specified by Unicode
74 The character-boundary iterator locates the boundaries according to the rules
82 another representing the umlaut `¨`). The character-boundary iterator will treat
91 The word-boundary iterator locates the boundaries of words, for purposes such as
100 Here's an example of a sentence, showing the boundary locations that will be
[all …]

12345678910>>...32