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

1 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
test_strtod.py 177 # boundaries expressed as triples (n, e, u), where
180 boundaries = [
186 for n, e, u in boundaries:
  /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
test_strtod.py 177 # boundaries expressed as triples (n, e, u), where
180 boundaries = [
186 for n, e, u in boundaries:
  /external/icu/icu4c/source/i18n/
brktrans.cpp 43 boundaries = new UVector32(status);
53 delete boundaries;
54 boundaries = NULL;
68 boundaries = new UVector32(status);
86 boundaries->removeAllElements();
93 // To make things much easier, we will stack the boundaries, and then insert at the end.
111 boundaries->addElement(boundary, status);
118 if (boundaries->size() != 0) { // if we found something, adjust
119 delta = boundaries->size() * fInsertion.length();
120 lastBoundary = boundaries->lastElementi()
    [all...]
brktrans.h 98 UVector32 *boundaries; member in class:BreakTransliterator
  /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/intltest/
rbbiapts.h 96 void doBoundaryTest(BreakIterator& bi, UnicodeString& text, int32_t *boundaries);
rbbiapts.cpp     [all...]