Home
last modified time | relevance | path

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

/third_party/icu/ohos_icu4j/src/main/java/ohos/global/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 …]
/third_party/node/deps/icu-small/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 …]
/third_party/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 …]
/third_party/skia/third_party/externals/icu/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 …]
/third_party/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 …]
/third_party/parse5/packages/parse5/lib/tokenizer/
Dpreprocessor.ts75 const nextCp = this.html.charCodeAt(this.pos + 1); constant
77 if (isSurrogatePair(nextCp)) {
84 return getSurrogatePairCodePoint(cp, nextCp);
Dindex.ts196 function isEntityInAttributeInvalidEnd(nextCp: number): boolean {
197 return nextCp === $.EQUALS_SIGN || isAsciiAlphaNumeric(nextCp);
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DCharsTrieTest.java729 int nextCp=expectedString.length()>1 ? expectedString.charAt(1) : 0; in checkFirst() local
732 BytesTrie.Result nextResult=trie.next(nextCp); in checkFirst()
736 nextResult!=trie.next(nextCp) in checkFirst()
743 nextCp=expectedString.length()>cLength ? expectedString.codePointAt(cLength) : 0; in checkFirst()
746 nextResult=trie.nextForCodePoint(nextCp); in checkFirst()
750 nextResult!=trie.nextForCodePoint(nextCp) in checkFirst()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
DCharsTrieTest.java732 int nextCp=expectedString.length()>1 ? expectedString.charAt(1) : 0; in checkFirst() local
735 BytesTrie.Result nextResult=trie.next(nextCp); in checkFirst()
739 nextResult!=trie.next(nextCp) in checkFirst()
746 nextCp=expectedString.length()>cLength ? expectedString.codePointAt(cLength) : 0; in checkFirst()
749 nextResult=trie.nextForCodePoint(nextCp); in checkFirst()
753 nextResult!=trie.nextForCodePoint(nextCp) in checkFirst()
/third_party/icu/icu4c/source/test/intltest/
Ducharstrietest.cpp830 UChar32 nextCp=expectedString.length()>1 ? expectedString[1] : 0; in checkFirst() local
833 UStringTrieResult nextResult=trie.next(nextCp); in checkFirst()
837 nextResult!=trie.next(nextCp) in checkFirst()
844 nextCp=expectedString.length()>cLength ? expectedString.char32At(cLength) : 0; in checkFirst()
847 nextResult=trie.nextForCodePoint(nextCp); in checkFirst()
851 nextResult!=trie.nextForCodePoint(nextCp) in checkFirst()