Searched refs:nextCodePoint (Results 1 - 25 of 38) sorted by relevance

12

/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().</p>
89 public int nextCodePoint(); method in interface:UForwardCharacterIterator
H A DCharsDictionaryMatcher.java24 int c = text.nextCodePoint();
52 c = text.nextCodePoint();
H A DBytesDictionaryMatcher.java45 int c = text.nextCodePoint();
73 c = text.nextCodePoint();
H A DUCharacterIterator.java208 public int nextCodePoint(){ method in class:UCharacterIterator
387 while(delta>0 && nextCodePoint() != DONE){delta--;}
H A DStringPrep.java404 while((ch=iter.nextCodePoint())!= UCharacterIterator.DONE){
541 while((ch=iter.nextCodePoint())!= UCharacterIterator.DONE){
/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 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 DUTF16CollationIterator.java69 public int nextCodePoint() { method in class:UTF16CollationIterator
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();
H A DFCDUTF16CollationIterator.java89 public int nextCodePoint() { method in class:FCDUTF16CollationIterator
192 while(num > 0 && nextCodePoint() >= 0) {
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
H A DUnicodeNormalizer.java102 ch = UTF16Util.nextCodePoint(source, i);
111 ch = UTF16Util.nextCodePoint(buffer, j);
139 int starterCh = UTF16Util.nextCodePoint(target,0);
147 int ch = UTF16Util.nextCodePoint(target, decompPos);
H A DNormalizerData.java65 ch = UTF16Util.nextCodePoint(decomp, i);
H A DNormalizerBuilder.java199 int second = UTF16Util.nextCodePoint(decomp, 0);
202 second = UTF16Util.nextCodePoint(decomp,
422 int second = UTF16Util.nextCodePoint(decomp, 0);
425 second = UTF16Util.nextCodePoint(decomp,
/external/icu/icu4c/source/i18n/
H A Duitercollationiterator.h43 virtual UChar32 nextCodePoint(UErrorCode &errorCode);
75 virtual UChar32 nextCodePoint(UErrorCode &errorCode);
H A Dutf8collationiterator.h44 virtual UChar32 nextCodePoint(UErrorCode &errorCode);
91 virtual UChar32 nextCodePoint(UErrorCode &errorCode);
H A Dutf16collationiterator.h55 virtual UChar32 nextCodePoint(UErrorCode &errorCode);
102 virtual UChar32 nextCodePoint(UErrorCode &errorCode);
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 Dcollationiterator.cpp206 c = nextCodePoint(errorCode);
316 nextCp = nextCodePoint(errorCode);
472 UChar32 c = nextCodePoint(errorCode);
610 suffixes.firstForCodePoint(nextCodePoint(errorCode));
612 suffixes.nextForCodePoint(nextCodePoint(errorCode));
693 UChar32 c = nextCodePoint(errorCode);
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
H A DNamePrepTransform.java113 while((ch=iter.nextCodePoint())!=UCharacterIterator.DONE){
133 while((ch=iter.nextCodePoint())!= UCharacterIterator.DONE){
/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/icu4j/main/tests/core/src/com/ibm/icu/dev/test/iterator/
H A DTestUCharacterIterator.java95 ch = iterator2.nextCodePoint();
99 errln("Error mismatch in next() and nextCodePoint()");
105 errln("Error mismatch in next and nextCodePoint for " +
206 c = iter.nextCodePoint();
219 c=iter.nextCodePoint();
369 c1=iter.nextCodePoint();
478 while((ch=iter.nextCodePoint()) !=UCharacterIterator.DONE){
480 errln("iter.nextCodePoint() failed");
/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/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DSimpleFilteredSentenceBreakIterator.java66 uch = text.nextCodePoint();
101 while ((uch = text.nextCodePoint()) != BreakIterator.DONE

Completed in 2559 milliseconds

12