Searched defs:nextCodePoint (Results 1 - 25 of 30) sorted by relevance

12

/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DUForwardCharacterIterator.java36 * It provides nextCodePoint() to access a code point and advance an internal
39 * <p>nextCodePoint() assumes that the current position is that of
41 * After nextCodePoint(), this will be true again.
45 * is returned even by nextCodePoint().
86 public int nextCodePoint(); method in interface:UForwardCharacterIterator
H A DUCharacterIterator.java191 public int nextCodePoint(){ method in class:UCharacterIterator
356 while(delta>0 && nextCodePoint() != DONE){delta--;}
H A DRuleBasedCollator.java1468 final int nextCodePoint() { method in class:RuleBasedCollator.NFDIterator
1482 * @param c the last code point returned by nextCodePoint() or nextDecomposedCodePoint()
1553 int leftCp = left.nextCodePoint();
1554 int rightCp = right.nextCodePoint();
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DUForwardCharacterIterator.java35 * It provides nextCodePoint() to access a code point and advance an internal
38 * <p>nextCodePoint() assumes that the current position is that of
40 * After nextCodePoint(), this will be true again.
44 * is returned even by nextCodePoint().
88 public int nextCodePoint(); method in interface:UForwardCharacterIterator
H A DUCharacterIterator.java205 public int nextCodePoint(){ method in class:UCharacterIterator
380 while(delta>0 && nextCodePoint() != DONE){delta--;}
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
H A DIterCollationIterator.java41 public int nextCodePoint() { method in class:IterCollationIterator
42 return iter.nextCodePoint();
H A DUTF16CollationIterator.java71 public int nextCodePoint() { method in class:UTF16CollationIterator
H A DFCDIterCollationIterator.java52 public int nextCodePoint() { method in class:FCDIterCollationIterator
80 c = iter.nextCodePoint();
207 while(num > 0 && nextCodePoint() >= 0) {
269 int c = iter.nextCodePoint();
282 c = iter.nextCodePoint();
364 iter.nextCodePoint();
376 iter.nextCodePoint();
H A DFCDUTF16CollationIterator.java91 public int nextCodePoint() { method in class:FCDUTF16CollationIterator
194 while(num > 0 && nextCodePoint() >= 0) {
H A DCollationIterator.java361 public abstract int nextCodePoint(); method in class:CollationIterator
399 int c = nextCodePoint();
514 nextCp = nextCodePoint();
686 int c = nextCodePoint();
814 suffixes.firstForCodePoint(nextCodePoint());
816 suffixes.nextForCodePoint(nextCodePoint());
972 int c = nextCodePoint();
H A DCollationDataBuilder.java1264 public int nextCodePoint() { method in class:CollationDataBuilder.DataBuilderCollationIterator
/external/icu/icu4c/source/i18n/
H A Duitercollationiterator.cpp59 UIterCollationIterator::nextCodePoint(UErrorCode & /*errorCode*/) { function in class:UIterCollationIterator
160 FCDUIterCollationIterator::nextCodePoint(UErrorCode &errorCode) {
259 while(num > 0 && FCDUIterCollationIterator::nextCodePoint(errorCode) >= 0) {
H A Dutf16collationiterator.cpp86 UTF16CollationIterator::nextCodePoint(UErrorCode & /*errorCode*/) { function in class:UTF16CollationIterator
249 FCDUTF16CollationIterator::nextCodePoint(UErrorCode &errorCode) { function in class:FCDUTF16CollationIterator
327 while(num > 0 && FCDUTF16CollationIterator::nextCodePoint(errorCode) >= 0) {
H A Dutf8collationiterator.cpp94 UTF8CollationIterator::nextCodePoint(UErrorCode & /*errorCode*/) { function in class:UTF8CollationIterator
265 FCDUTF8CollationIterator::nextCodePoint(UErrorCode &errorCode) {
344 while(num > 0 && FCDUTF8CollationIterator::nextCodePoint(errorCode) >= 0) {
H A Dcollationdatabuilder.cpp135 virtual UChar32 nextCodePoint(UErrorCode &errorCode);
220 DataBuilderCollationIterator::nextCodePoint(UErrorCode & /*errorCode*/) { function in class:DataBuilderCollationIterator
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DIterCollationIterator.java39 public int nextCodePoint() { method in class:IterCollationIterator
40 return iter.nextCodePoint();
H A DUTF16CollationIterator.java69 public int nextCodePoint() { method in class:UTF16CollationIterator
H A DFCDIterCollationIterator.java50 public int nextCodePoint() { method in class:FCDIterCollationIterator
78 c = iter.nextCodePoint();
205 while(num > 0 && nextCodePoint() >= 0) {
267 int c = iter.nextCodePoint();
280 c = iter.nextCodePoint();
362 iter.nextCodePoint();
374 iter.nextCodePoint();
H A DFCDUTF16CollationIterator.java89 public int nextCodePoint() { method in class:FCDUTF16CollationIterator
192 while(num > 0 && nextCodePoint() >= 0) {
H A DCollationIterator.java359 public abstract int nextCodePoint(); method in class:CollationIterator
397 int c = nextCodePoint();
512 nextCp = nextCodePoint();
684 int c = nextCodePoint();
812 suffixes.firstForCodePoint(nextCodePoint());
814 suffixes.nextForCodePoint(nextCodePoint());
970 int c = nextCodePoint();
/external/guava/guava-tests/benchmark/com/google/common/base/
H A DCharMatcherBenchmark.java112 int cp = sampler.nextCodePoint();
166 public int nextCodePoint() { method in class:CharMatcherBenchmark.CharSamples
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/
H A DUTF16Util.java22 * Method nextCodePoint. Returns the next code point
28 public static final int nextCodePoint(String s, int i) { method in class:UTF16Util
58 * Method nextCodePoint. Returns the next code point
64 public static final int nextCodePoint(StringBuffer s, int i) { method in class:UTF16Util
142 int cp = nextCodePoint(buffer, i);
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
H A DUTF16Util.java21 * Method nextCodePoint. Returns the next code point
27 public static final int nextCodePoint(String s, int i) { method in class:UTF16Util
57 * Method nextCodePoint. Returns the next code point
63 public static final int nextCodePoint(StringBuffer s, int i) { method in class:UTF16Util
141 int cp = nextCodePoint(buffer, i);
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
H A DUnicodeSetStringSpanTest.java688 static int nextCodePoint(int c) { method in class:UnicodeSetStringSpanTest
715 for (first = c = 0;; c = nextCodePoint(c)) {
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
H A DUnicodeSetStringSpanTest.java684 static int nextCodePoint(int c) { method in class:UnicodeSetStringSpanTest
711 for (first = c = 0;; c = nextCodePoint(c)) {

Completed in 249 milliseconds

12