Searched refs:boundaries (Results 1 - 25 of 25) sorted by relevance

/external/icu/icu4c/source/i18n/
H A Dbrktrans.cpp75 LocalPointer<UVector32> boundaries; local
80 boundaries.moveFrom(nonConstThis->cachedBoundaries);
86 if (boundaries.isNull()) {
87 boundaries.adoptInstead(new UVector32(status));
90 if (bi.isNull() || boundaries.isNull() || U_FAILURE(status)) {
94 boundaries->removeAllElements();
99 // To make things much easier, we will stack the boundaries, and then insert at the end.
117 boundaries->addElement(boundary, status);
124 if (boundaries->size() != 0) { // if we found something, adjust
125 delta = boundaries
[all...]
/external/opencv3/modules/imgproc/src/
H A Dcanny.cpp243 : boundaries(_boundaries), src(_src), map(_map), low(_low), high(_high),
268 if (boundaries.start == 0 && boundaries.end == src.rows)
270 Mat tempdx(boundaries.end - boundaries.start + 2, src.cols, CV_16SC(cn));
271 Mat tempdy(boundaries.end - boundaries.start + 2, src.cols, CV_16SC(cn));
284 else if (boundaries.start == 0)
286 Mat tempdx(boundaries.end - boundaries
567 const Range boundaries; member in class:cv::tbbCanny
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DBreakTransliterator.java24 private int[] boundaries = new int[50]; field in class:BreakTransliterator
88 // To make things much easier, we will stack the boundaries, and then insert at the end.
105 if (boundaryCount >= boundaries.length) { // realloc if necessary
106 int[] temp = new int[boundaries.length * 2];
107 System.arraycopy(boundaries, 0, temp, 0, boundaries.length);
108 boundaries = temp;
111 boundaries[boundaryCount++] = boundary;
120 lastBoundary = boundaries[boundaryCount-1];
125 boundary = boundaries[
[all...]
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DBreakTransliterator.java23 private int[] boundaries = new int[50]; field in class:BreakTransliterator
87 // To make things much easier, we will stack the boundaries, and then insert at the end.
104 if (boundaryCount >= boundaries.length) { // realloc if necessary
105 int[] temp = new int[boundaries.length * 2];
106 System.arraycopy(boundaries, 0, temp, 0, boundaries.length);
107 boundaries = temp;
110 boundaries[boundaryCount++] = boundary;
119 lastBoundary = boundaries[boundaryCount-1];
124 boundary = boundaries[
[all...]
/external/icu/icu4c/source/test/intltest/
H A Drbbiapts.h96 void doBoundaryTest(BreakIterator& bi, UnicodeString& text, int32_t *boundaries);
H A Drbbiapts.cpp1139 * The right set of boundaries should still be found.
1156 /* Line boundaries will occur before each letter in the original string */
1470 void RBBIAPITest::doBoundaryTest(BreakIterator& bi, UnicodeString& text, int32_t *boundaries){ argument
1478 if (i == boundaries[p]) {
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
H A DBreakIteratorTest.java75 int[] boundaries = new int[expectedResult.size() + 3];
76 boundaries[0] = BreakIterator.DONE;
77 boundaries[1] = 0;
79 boundaries[i + 2] = boundaries[i + 1] + (expectedResult.get(i)).
81 boundaries[boundaries.length - 1] = BreakIterator.DONE;
83 _testFollowing(bi, text, boundaries);
84 _testPreceding(bi, text, boundaries);
85 _testIsBoundary(bi, text, boundaries);
196 _testFollowing(BreakIterator bi, String text, int[] boundaries) argument
211 _testPreceding(BreakIterator bi, String text, int[] boundaries) argument
226 _testIsBoundary(BreakIterator bi, String text, int[] boundaries) argument
[all...]
H A DRBBITest.java290 int[] boundaries = new int[expectedResult.size() + 3];
291 boundaries[0] = RuleBasedBreakIterator.DONE;
292 boundaries[1] = 0;
294 boundaries[i + 2] = boundaries[i + 1] + (expectedResult.get(i).length());
297 boundaries[boundaries.length - 1] = RuleBasedBreakIterator.DONE;
299 _testFollowing(rbbi, text, boundaries);
300 _testPreceding(rbbi, text, boundaries);
301 _testIsBoundary(rbbi, text, boundaries);
419 _testFollowing(RuleBasedBreakIterator rbbi, String text, int[] boundaries) argument
433 _testPreceding(RuleBasedBreakIterator rbbi, String text, int[] boundaries) argument
447 _testIsBoundary(RuleBasedBreakIterator rbbi, String text, int[] boundaries) argument
[all...]
H A DRBBIAPITest.java425 public void doBoundaryTest(BreakIterator bi, String text, int[] boundaries) { argument
432 if (i == boundaries[p]) {
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
H A DBreakIteratorTest.java71 int[] boundaries = new int[expectedResult.size() + 3];
72 boundaries[0] = BreakIterator.DONE;
73 boundaries[1] = 0;
75 boundaries[i + 2] = boundaries[i + 1] + (expectedResult.get(i)).
77 boundaries[boundaries.length - 1] = BreakIterator.DONE;
79 _testFollowing(bi, text, boundaries);
80 _testPreceding(bi, text, boundaries);
81 _testIsBoundary(bi, text, boundaries);
192 _testFollowing(BreakIterator bi, String text, int[] boundaries) argument
207 _testPreceding(BreakIterator bi, String text, int[] boundaries) argument
222 _testIsBoundary(BreakIterator bi, String text, int[] boundaries) argument
[all...]
H A DRBBITest.java286 int[] boundaries = new int[expectedResult.size() + 3];
287 boundaries[0] = RuleBasedBreakIterator.DONE;
288 boundaries[1] = 0;
290 boundaries[i + 2] = boundaries[i + 1] + (expectedResult.get(i).length());
293 boundaries[boundaries.length - 1] = RuleBasedBreakIterator.DONE;
295 _testFollowing(rbbi, text, boundaries);
296 _testPreceding(rbbi, text, boundaries);
297 _testIsBoundary(rbbi, text, boundaries);
415 _testFollowing(RuleBasedBreakIterator rbbi, String text, int[] boundaries) argument
429 _testPreceding(RuleBasedBreakIterator rbbi, String text, int[] boundaries) argument
443 _testIsBoundary(RuleBasedBreakIterator rbbi, String text, int[] boundaries) argument
[all...]
H A DRBBIAPITest.java421 public void doBoundaryTest(BreakIterator bi, String text, int[] boundaries) { argument
428 if (i == boundaries[p]) {
/external/icu/icu4c/source/test/cintltst/
H A Dutf8tst.c503 * Use a (mostly) well-formed UTF-8 string and test at code point boundaries.
645 * Use a (mostly) well-formed UTF-8 string and test at code point boundaries.
657 static const int8_t boundaries[]={ 0, 1, 5, 7, 10, 12, 16, 17 }; local
663 if(offset != boundaries[i]){
664 log_err("ERROR: UTF8_FWD_1_UNSAFE offset expected:%d, Got:%d\n", boundaries[i], offset);
669 if(offset != boundaries[i]){
670 log_err("ERROR: U8_FWD_1_UNSAFE offset expected:%d, Got:%d\n", boundaries[i], offset);
674 for(i=UPRV_LENGTHOF(boundaries)-2, offset=UPRV_LENGTHOF(input); offset>0; --i) {
676 if(offset != boundaries[i]){
677 log_err("ERROR: UTF8_BACK_1_UNSAFE offset expected:%d, Got:%d\n", boundaries[
[all...]
H A Dcbiapts.c844 * The right set of boundaries should still be found.
865 /* Line boundaries will occur before each letter in the original string */
901 int32_t boundaries[10] = {0}; local
915 boundaries[brkIdx] = brk;
916 if (++brkIdx >= UPRV_LENGTHOF(boundaries) - 1) {
920 if (brkIdx <= 2 || brkIdx >= UPRV_LENGTHOF(boundaries)) {
926 if (brk != boundaries[brkIdx]) {
930 if (++brkIdx >= UPRV_LENGTHOF(boundaries) - 1) {
/external/llvm/test/MC/X86/AlignedBundling/
H A Dsingle-inst-bundling.s10 # Will be bundle-aligning to 16 byte boundaries
H A Dnesting.s6 # Will be bundle-aligning to 16 byte boundaries
/external/libbrillo/brillo/http/
H A Dhttp_form_data_unittest.cc125 std::set<std::string> boundaries; local
129 boundaries.insert(boundary);
141 EXPECT_GE(boundaries.size(), expected_min_unique);
/external/libvorbis/doc/
H A Da1-encapsulation-ogg.tex107 Vorbis packets may span page boundaries.
180 end the stream on other than even frame boundaries. The difference
H A D02-bitpacking.tex72 aligned to the boundaries of the byte representation; the next field
197 boundaries maintained in the bitstream.
/external/v8/src/
H A Dtypes.cc379 const Boundary* boundaries = Boundaries(); local
381 DCHECK(BitsetType::Is(boundaries[i].internal, boundaries[i].external));
382 if (bits & SEMANTIC(boundaries[i].internal))
383 bits |= SEMANTIC(boundaries[i].external);
/external/protobuf/src/google/protobuf/io/
H A Dtokenizer.cc361 AddError("String literals cannot cross line boundaries.");
/external/libvpx/libvpx/third_party/x86inc/
H A Dx86inc.asm767 ; sources on e.g., directory boundaries.
/external/chromium-trace/catapult/third_party/gsutil/gslib/tests/
H A Dtest_cp.py809 # Ensure copy also works across json upload chunk boundaries.
1417 'XML doesn\'t make separate HTTP calls at fixed-size boundaries for '
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.pas2756 /// R.i-j.u R.x-y.v | boundaries overlap ERROR
6050 raise EArgumentOutOfRangeException.Create('replace of boundaries of '
6093 + IOp.ToString + ' within boundaries of previous ' + ROp.ToString);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 911 milliseconds