Searched refs:nextSkippedCodePoint (Results 1 - 4 of 4) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
H A DCollationIterator.java513 // avoiding the function call and the nextSkippedCodePoint() overhead.
528 nextCp = nextSkippedCodePoint();
683 private final int nextSkippedCodePoint() { method in class:CollationIterator
720 if(!match.hasNext() || (c = nextSkippedCodePoint()) < 0) {
725 } else if(match == BytesTrie.Result.NO_MATCH || (nextCp = nextSkippedCodePoint()) < 0) {
741 c = nextSkippedCodePoint();
788 int nextCp = nextSkippedCodePoint();
848 if((c = nextSkippedCodePoint()) < 0) { break; }
/external/icu/icu4c/source/i18n/
H A Dcollationiterator.cpp315 // avoiding the function call and the nextSkippedCodePoint() overhead.
330 nextCp = nextSkippedCodePoint(errorCode);
469 CollationIterator::nextSkippedCodePoint(UErrorCode &errorCode) { function in class:CollationIterator
508 if(!USTRINGTRIE_HAS_NEXT(match) || (c = nextSkippedCodePoint(errorCode)) < 0) {
513 } else if(match == USTRINGTRIE_NO_MATCH || (nextCp = nextSkippedCodePoint(errorCode)) < 0) {
529 c = nextSkippedCodePoint(errorCode);
580 UChar32 nextCp = nextSkippedCodePoint(errorCode);
644 if((c = nextSkippedCodePoint(errorCode)) < 0) { break; }
H A Dcollationiterator.h270 UChar32 nextSkippedCodePoint(UErrorCode &errorCode);
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationIterator.java511 // avoiding the function call and the nextSkippedCodePoint() overhead.
526 nextCp = nextSkippedCodePoint();
681 private final int nextSkippedCodePoint() { method in class:CollationIterator
718 if(!match.hasNext() || (c = nextSkippedCodePoint()) < 0) {
723 } else if(match == BytesTrie.Result.NO_MATCH || (nextCp = nextSkippedCodePoint()) < 0) {
739 c = nextSkippedCodePoint();
786 int nextCp = nextSkippedCodePoint();
846 if((c = nextSkippedCodePoint()) < 0) { break; }

Completed in 242 milliseconds