Home
last modified time | relevance | path

Searched refs:nextCp (Results 1 – 6 of 6) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
DCollationIterator.java518 int nextCp; in appendCEsFromCE32() local
522 nextCp = nextCodePoint(); in appendCEsFromCE32()
523 if(nextCp < 0) { in appendCEsFromCE32()
528 !CollationFCD.mayHaveLccc(nextCp)) { in appendCEsFromCE32()
536 nextCp = nextSkippedCodePoint(); in appendCEsFromCE32()
537 if(nextCp < 0) { in appendCEsFromCE32()
542 !CollationFCD.mayHaveLccc(nextCp)) { in appendCEsFromCE32()
550 ce32 = nextCE32FromContraction(d, ce32, d.contexts, index + 2, defaultCE32, nextCp); in appendCEsFromCE32()
725 int nextCp; in nextCE32FromContraction() local
733 } else if(match == BytesTrie.Result.NO_MATCH || (nextCp = nextSkippedCodePoint()) < 0) { in nextCE32FromContraction()
[all …]
/external/icu/icu4c/source/i18n/
Dcollationiterator.cpp314 UChar32 nextCp; in appendCEsFromCE32() local
318 nextCp = nextCodePoint(errorCode); in appendCEsFromCE32()
319 if(nextCp < 0) { in appendCEsFromCE32()
324 !CollationFCD::mayHaveLccc(nextCp)) { in appendCEsFromCE32()
332 nextCp = nextSkippedCodePoint(errorCode); in appendCEsFromCE32()
333 if(nextCp < 0) { in appendCEsFromCE32()
338 !CollationFCD::mayHaveLccc(nextCp)) { in appendCEsFromCE32()
346 ce32 = nextCE32FromContraction(d, ce32, p + 2, defaultCE32, nextCp, errorCode); in appendCEsFromCE32()
507 UChar32 nextCp; in nextCE32FromContraction() local
515 } else if(match == USTRINGTRIE_NO_MATCH || (nextCp = nextSkippedCodePoint(errorCode)) < 0) { in nextCE32FromContraction()
[all …]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationIterator.java516 int nextCp; in appendCEsFromCE32() local
520 nextCp = nextCodePoint(); in appendCEsFromCE32()
521 if(nextCp < 0) { in appendCEsFromCE32()
526 !CollationFCD.mayHaveLccc(nextCp)) { in appendCEsFromCE32()
534 nextCp = nextSkippedCodePoint(); in appendCEsFromCE32()
535 if(nextCp < 0) { in appendCEsFromCE32()
540 !CollationFCD.mayHaveLccc(nextCp)) { in appendCEsFromCE32()
548 ce32 = nextCE32FromContraction(d, ce32, d.contexts, index + 2, defaultCE32, nextCp); in appendCEsFromCE32()
723 int nextCp; in nextCE32FromContraction() local
731 } else if(match == BytesTrie.Result.NO_MATCH || (nextCp = nextSkippedCodePoint()) < 0) { in nextCE32FromContraction()
[all …]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DCharsTrieTest.java707 int nextCp=expectedString.length()>1 ? expectedString.charAt(1) : 0; in checkFirst() local
710 BytesTrie.Result nextResult=trie.next(nextCp); in checkFirst()
714 nextResult!=trie.next(nextCp) in checkFirst()
721 nextCp=expectedString.length()>cLength ? expectedString.codePointAt(cLength) : 0; in checkFirst()
724 nextResult=trie.nextForCodePoint(nextCp); in checkFirst()
728 nextResult!=trie.nextForCodePoint(nextCp) in checkFirst()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
DCharsTrieTest.java710 int nextCp=expectedString.length()>1 ? expectedString.charAt(1) : 0; in checkFirst() local
713 BytesTrie.Result nextResult=trie.next(nextCp); in checkFirst()
717 nextResult!=trie.next(nextCp) in checkFirst()
724 nextCp=expectedString.length()>cLength ? expectedString.codePointAt(cLength) : 0; in checkFirst()
727 nextResult=trie.nextForCodePoint(nextCp); in checkFirst()
731 nextResult!=trie.nextForCodePoint(nextCp) in checkFirst()
/external/icu/icu4c/source/test/intltest/
Ducharstrietest.cpp828 UChar32 nextCp=expectedString.length()>1 ? expectedString[1] : 0; in checkFirst() local
831 UStringTrieResult nextResult=trie.next(nextCp); in checkFirst()
835 nextResult!=trie.next(nextCp) in checkFirst()
842 nextCp=expectedString.length()>cLength ? expectedString.char32At(cLength) : 0; in checkFirst()
845 nextResult=trie.nextForCodePoint(nextCp); in checkFirst()
849 nextResult!=trie.nextForCodePoint(nextCp) in checkFirst()