Home
last modified time | relevance | path

Searched refs:nextCodePoint (Results 1 – 25 of 73) sorted by relevance

123

/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DFCDIterCollationIterator.java52 public int nextCodePoint() { in nextCodePoint() method in FCDIterCollationIterator
80 c = iter.nextCodePoint(); in nextCodePoint()
207 while(num > 0 && nextCodePoint() >= 0) {
269 int c = iter.nextCodePoint(); in nextSegment()
282 c = iter.nextCodePoint(); in nextSegment()
364 iter.nextCodePoint(); in previousSegment()
376 iter.nextCodePoint(); in previousSegment()
DIterCollationIterator.java41 public int nextCodePoint() { in nextCodePoint() method in IterCollationIterator
42 return iter.nextCodePoint(); in nextCodePoint()
DCollationIterator.java367 public abstract int nextCodePoint(); in nextCodePoint() method in CollationIterator
405 int c = nextCodePoint(); in handleNextCE32()
520 nextCp = nextCodePoint(); in appendCEsFromCE32()
692 int c = nextCodePoint(); in nextSkippedCodePoint()
820 suffixes.firstForCodePoint(nextCodePoint()); in nextCE32FromDiscontiguousContraction()
822 suffixes.nextForCodePoint(nextCodePoint()); in nextCE32FromDiscontiguousContraction()
978 int c = nextCodePoint();
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
DFCDIterCollationIterator.java54 public int nextCodePoint() { in nextCodePoint() method in FCDIterCollationIterator
82 c = iter.nextCodePoint(); in nextCodePoint()
209 while(num > 0 && nextCodePoint() >= 0) {
271 int c = iter.nextCodePoint(); in nextSegment()
284 c = iter.nextCodePoint(); in nextSegment()
366 iter.nextCodePoint(); in previousSegment()
378 iter.nextCodePoint(); in previousSegment()
DIterCollationIterator.java43 public int nextCodePoint() { in nextCodePoint() method in IterCollationIterator
44 return iter.nextCodePoint(); in nextCodePoint()
DCollationIterator.java369 public abstract int nextCodePoint(); in nextCodePoint() method in CollationIterator
407 int c = nextCodePoint(); in handleNextCE32()
522 nextCp = nextCodePoint(); in appendCEsFromCE32()
694 int c = nextCodePoint(); in nextSkippedCodePoint()
822 suffixes.firstForCodePoint(nextCodePoint()); in nextCE32FromDiscontiguousContraction()
824 suffixes.nextForCodePoint(nextCodePoint()); in nextCE32FromDiscontiguousContraction()
980 int c = nextCodePoint();
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
DUnicodeNormalizer.java104 ch = UTF16Util.nextCodePoint(source, i); in internalDecompose()
113 ch = UTF16Util.nextCodePoint(buffer, j); in internalDecompose()
141 int starterCh = UTF16Util.nextCodePoint(target,0); in internalCompose()
149 int ch = UTF16Util.nextCodePoint(target, decompPos); in internalCompose()
DNormalizerBuilder.java201 int second = UTF16Util.nextCodePoint(decomp, 0); in buildDecompositionTables()
204 second = UTF16Util.nextCodePoint(decomp, in buildDecompositionTables()
424 int second = UTF16Util.nextCodePoint(decomp, 0); in setMinimalDecomp()
427 second = UTF16Util.nextCodePoint(decomp, in setMinimalDecomp()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
DUnicodeNormalizer.java107 ch = UTF16Util.nextCodePoint(source, i); in internalDecompose()
116 ch = UTF16Util.nextCodePoint(buffer, j); in internalDecompose()
144 int starterCh = UTF16Util.nextCodePoint(target,0); in internalCompose()
152 int ch = UTF16Util.nextCodePoint(target, decompPos); in internalCompose()
DNormalizerBuilder.java202 int second = UTF16Util.nextCodePoint(decomp, 0); in buildDecompositionTables()
205 second = UTF16Util.nextCodePoint(decomp, in buildDecompositionTables()
425 int second = UTF16Util.nextCodePoint(decomp, 0); in setMinimalDecomp()
428 second = UTF16Util.nextCodePoint(decomp, in setMinimalDecomp()
/external/cldr/tools/java/org/unicode/cldr/draft/
DCharacterListCompressor.java265 while ((first = it.nextCodePoint()) != UCharacterIterator.DONE) { in getStrRangeListFromRangeStr()
266 int last = it.nextCodePoint(); in getStrRangeListFromRangeStr()
295 while ((first = it.nextCodePoint()) != UCharacterIterator.DONE) { in rangeString2string()
296 int last = it.nextCodePoint(); in rangeString2string()
318 c1 = it1.nextCodePoint(); in isStringsEqual()
319 c2 = it2.nextCodePoint(); in isStringsEqual()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DCharsDictionaryMatcher.java28 int c = text.nextCodePoint(); in matches()
56 c = text.nextCodePoint(); in matches()
DBytesDictionaryMatcher.java49 int c = text.nextCodePoint(); in matches()
77 c = text.nextCodePoint(); in matches()
DUCharacterIterator.java197 public int nextCodePoint() { in nextCodePoint() method in UCharacterIterator
355 while (delta > 0 && nextCodePoint() != DONE) { in moveCodePointIndex()
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
DUTF16Util.java29 public static final int nextCodePoint(String s, int i) { in nextCodePoint() method in UTF16Util
65 public static final int nextCodePoint(StringBuffer s, int i) { in nextCodePoint() method in UTF16Util
143 int cp = nextCodePoint(buffer, i); in setCodePointAt()
/external/cldr/tools/java/com/ibm/icu/dev/test/
DUTF16Util.java28 public static final int nextCodePoint(String s, int i) { in nextCodePoint() method in UTF16Util
64 public static final int nextCodePoint(StringBuffer s, int i) { in nextCodePoint() method in UTF16Util
142 int cp = nextCodePoint(buffer, i); in setCodePointAt()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DCharsDictionaryMatcher.java27 int c = text.nextCodePoint(); in matches()
55 c = text.nextCodePoint(); in matches()
DBytesDictionaryMatcher.java48 int c = text.nextCodePoint(); in matches()
76 c = text.nextCodePoint(); in matches()
DUCharacterIterator.java212 public int nextCodePoint() { in nextCodePoint() method in UCharacterIterator
382 while (delta > 0 && nextCodePoint() != DONE) { in moveCodePointIndex()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/
DUTF16Util.java33 public static final int nextCodePoint(String s, int i) { in nextCodePoint() method in UTF16Util
69 public static final int nextCodePoint(StringBuffer s, int i) { in nextCodePoint() method in UTF16Util
147 int cp = nextCodePoint(buffer, i); in setCodePointAt()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/iterator/
DTestUCharacterIterator.java107 ch = iterator2.nextCodePoint(); in TestIteration()
206 c = iter.nextCodePoint(); in TestIterationUChar32()
219 c=iter.nextCodePoint(); in TestIterationUChar32()
370 c1=iter.nextCodePoint(); in previousNext()
481 while((ch=iter.nextCodePoint()) !=UCharacterIterator.DONE){ in TestJitterbug1952()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/iterator/
DTestUCharacterIterator.java104 ch = iterator2.nextCodePoint(); in TestIteration()
203 c = iter.nextCodePoint(); in TestIterationUChar32()
216 c=iter.nextCodePoint(); in TestIterationUChar32()
367 c1=iter.nextCodePoint(); in previousNext()
478 while((ch=iter.nextCodePoint()) !=UCharacterIterator.DONE){ in TestJitterbug1952()
/external/icu/icu4c/source/i18n/
Duitercollationiterator.h46 virtual UChar32 nextCodePoint(UErrorCode &errorCode);
78 virtual UChar32 nextCodePoint(UErrorCode &errorCode);
Dutf8collationiterator.h47 virtual UChar32 nextCodePoint(UErrorCode &errorCode);
94 virtual UChar32 nextCodePoint(UErrorCode &errorCode);
Dutf16collationiterator.h57 virtual UChar32 nextCodePoint(UErrorCode &errorCode);
104 virtual UChar32 nextCodePoint(UErrorCode &errorCode);

123