HomeSort by relevance Sort by last modified time
    Searched refs:boundaries (Results 1 - 25 of 133) sorted by null

1 2 3 4 5 6

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_multifile.py 41 global boundaries, linecount
47 boundaries += 1
58 global boundaries, linecount
59 boundaries = 0
63 assert boundaries == 2
  /external/python/cpython2/Lib/test/
test_multifile.py 41 global boundaries, linecount
47 boundaries += 1
58 global boundaries, linecount
59 boundaries = 0
63 assert boundaries == 2
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_multifile.py 41 global boundaries, linecount
47 boundaries += 1
58 global boundaries, linecount
59 boundaries = 0
63 assert boundaries == 2
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_multifile.py 41 global boundaries, linecount
47 boundaries += 1
58 global boundaries, linecount
59 boundaries = 0
63 assert boundaries == 2
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_multifile.py 41 global boundaries, linecount
47 boundaries += 1
58 global boundaries, linecount
59 boundaries = 0
63 assert boundaries == 2
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_multifile.py 41 global boundaries, linecount
47 boundaries += 1
58 global boundaries, linecount
59 boundaries = 0
63 assert boundaries == 2
  /external/icu/icu4c/source/i18n/
brktrans.cpp 77 LocalPointer<UVector32> boundaries; local
82 boundaries.moveFrom(nonConstThis->cachedBoundaries);
88 if (boundaries.isNull()) {
89 boundaries.adoptInstead(new UVector32(status));
92 if (bi.isNull() || boundaries.isNull() || U_FAILURE(status)) {
96 boundaries->removeAllElements();
101 // To make things much easier, we will stack the boundaries, and then insert at the end.
119 boundaries->addElement(boundary, status);
126 if (boundaries->size() != 0) { // if we found something, adjust
127 delta = boundaries->size() * fInsertion.length()
    [all...]
  /prebuilts/go/darwin-x86/test/
ddd2.go 7 // Test that variadic functions work across package boundaries.
  /prebuilts/go/linux-x86/test/
ddd2.go 7 // Test that variadic functions work across package boundaries.
  /external/icu/icu4c/source/test/intltest/
rbbiapts.h 97 void doBoundaryTest(BreakIterator& bi, UnicodeString& text, int32_t *boundaries);
  /external/icu/android_icu4j/src/main/java/android/icu/text/
BreakTransliterator.java 26 private int[] boundaries = new int[50]; field in class:BreakTransliterator
91 // To make things much easier, we will stack the boundaries, and then insert at the end.
108 if (boundaryCount >= boundaries.length) { // realloc if necessary
109 int[] temp = new int[boundaries.length * 2];
110 System.arraycopy(boundaries, 0, temp, 0, boundaries.length);
111 boundaries = temp;
114 boundaries[boundaryCount++] = boundary;
123 lastBoundary = boundaries[boundaryCount-1];
128 boundary = boundaries[--boundaryCount]
    [all...]
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
BreakTransliterator.java 25 private int[] boundaries = new int[50]; field in class:BreakTransliterator
90 // To make things much easier, we will stack the boundaries, and then insert at the end.
107 if (boundaryCount >= boundaries.length) { // realloc if necessary
108 int[] temp = new int[boundaries.length * 2];
109 System.arraycopy(boundaries, 0, temp, 0, boundaries.length);
110 boundaries = temp;
113 boundaries[boundaryCount++] = boundary;
122 lastBoundary = boundaries[boundaryCount-1];
127 boundary = boundaries[--boundaryCount]
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/
readelf.s 7 # boundaries. On IA64, text sections are aligned to 16 byte boundaries.
  /prebuilts/go/darwin-x86/test/ddd2.dir/
ddd3.go 5 // Test that variadic functions work across package boundaries.
  /prebuilts/go/linux-x86/test/ddd2.dir/
ddd3.go 5 // Test that variadic functions work across package boundaries.
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
BreakIteratorTest.java 80 int[] boundaries = new int[expectedResult.size() + 3]; local
81 boundaries[0] = BreakIterator.DONE;
82 boundaries[1] = 0;
84 boundaries[i + 2] = boundaries[i + 1] + (expectedResult.get(i)).
86 boundaries[boundaries.length - 1] = BreakIterator.DONE;
88 _testFollowing(bi, text, boundaries);
89 _testPreceding(bi, text, boundaries);
90 _testIsBoundary(bi, text, boundaries);
    [all...]
RBBITest.java 293 int[] boundaries = new int[expectedResult.size() + 3]; local
294 boundaries[0] = RuleBasedBreakIterator.DONE;
295 boundaries[1] = 0;
297 boundaries[i + 2] = boundaries[i + 1] + (expectedResult.get(i).length());
300 boundaries[boundaries.length - 1] = RuleBasedBreakIterator.DONE;
302 _testFollowing(rbbi, text, boundaries);
303 _testPreceding(rbbi, text, boundaries);
304 _testIsBoundary(rbbi, text, boundaries);
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
BreakIteratorTest.java 79 int[] boundaries = new int[expectedResult.size() + 3]; local
80 boundaries[0] = BreakIterator.DONE;
81 boundaries[1] = 0;
83 boundaries[i + 2] = boundaries[i + 1] + (expectedResult.get(i)).
85 boundaries[boundaries.length - 1] = BreakIterator.DONE;
87 _testFollowing(bi, text, boundaries);
88 _testPreceding(bi, text, boundaries);
89 _testIsBoundary(bi, text, boundaries);
    [all...]
RBBITest.java 292 int[] boundaries = new int[expectedResult.size() + 3]; local
293 boundaries[0] = RuleBasedBreakIterator.DONE;
294 boundaries[1] = 0;
296 boundaries[i + 2] = boundaries[i + 1] + (expectedResult.get(i).length());
299 boundaries[boundaries.length - 1] = RuleBasedBreakIterator.DONE;
301 _testFollowing(rbbi, text, boundaries);
302 _testPreceding(rbbi, text, boundaries);
303 _testIsBoundary(rbbi, text, boundaries);
    [all...]
  /external/icu/icu4c/source/test/cintltst/
utf8tst.c 505 * Use a (mostly) well-formed UTF-8 string and test at code point boundaries.
647 * Use a (mostly) well-formed UTF-8 string and test at code point boundaries.
659 static const int8_t boundaries[]={ 0, 1, 5, 7, 10, 12, 16, 17 }; local
665 if(offset != boundaries[i]){
666 log_err("ERROR: UTF8_FWD_1_UNSAFE offset expected:%d, Got:%d\n", boundaries[i], offset);
671 if(offset != boundaries[i]){
672 log_err("ERROR: U8_FWD_1_UNSAFE offset expected:%d, Got:%d\n", boundaries[i], offset);
676 for(i=UPRV_LENGTHOF(boundaries)-2, offset=UPRV_LENGTHOF(input); offset>0; --i) {
678 if(offset != boundaries[i]){
679 log_err("ERROR: UTF8_BACK_1_UNSAFE offset expected:%d, Got:%d\n", boundaries[i], offset)
    [all...]
  /frameworks/native/cmds/installd/
Android.mk 11 # Base & ASLR boundaries for boot image creation.
  /prebuilts/go/darwin-x86/src/path/filepath/
path_plan9.go 22 // Deprecated: HasPrefix does not respect path boundaries and
  /prebuilts/go/linux-x86/src/path/filepath/
path_plan9.go 22 // Deprecated: HasPrefix does not respect path boundaries and
  /external/llvm/test/MC/X86/AlignedBundling/
single-inst-bundling.s 10 # Will be bundle-aligning to 16 byte boundaries
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/
align-2.s 2 # execute packets can cross fetch packet boundaries.

Completed in 1179 milliseconds

1 2 3 4 5 6