HomeSort by relevance Sort by last modified time
    Searched defs:boundaries (Results 1 - 17 of 17) sorted by null

  /external/libbrillo/brillo/http/
http_form_data_unittest.cc 125 std::set<std::string> boundaries; local
129 boundaries.insert(boundary);
141 EXPECT_GE(boundaries.size(), expected_min_unique);
  /external/icu/icu4c/source/i18n/
brktrans.cpp 75 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->size() * fInsertion.length()
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
BreakTransliterator.java 24 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[--boundaryCount]
    [all...]
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
BreakTransliterator.java 23 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[--boundaryCount]
    [all...]
  /external/icu/icu4c/source/test/cintltst/
utf8tst.c 503 * 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[i], offset)
    [all...]
cbiapts.c 901 int32_t boundaries[10] = {0}; local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
RBBITest.java 290 int[] boundaries = new int[expectedResult.size() + 3]; local
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);
    [all...]
BreakIteratorTest.java 75 int[] boundaries = new int[expectedResult.size() + 3]; local
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);
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
RBBITest.java 286 int[] boundaries = new int[expectedResult.size() + 3]; local
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);
    [all...]
BreakIteratorTest.java 71 int[] boundaries = new int[expectedResult.size() + 3]; local
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);
    [all...]
  /external/opencv3/modules/imgproc/src/
canny.cpp 243 : 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.start + 2 + ksize2, src.cols, CV_16SC(cn))
567 const Range boundaries; member in class:cv::tbbCanny
    [all...]
  /external/v8/src/
types.cc 361 TypeImpl<Config>::BitsetType::Boundaries() {
379 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);
394 const Boundary* mins = Boundaries();
418 const Boundary* mins = Boundaries();
439 const Boundary* mins = Boundaries();
    [all...]
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/53.1/
icu4j-53.1.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/54.1.1/
icu4j-54.1.1.jar 

Completed in 441 milliseconds