Home
last modified time | relevance | path

Searched refs:nextCp (Results 1 – 9 of 9) 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/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/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/flutter/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/parse5/packages/parse5/lib/tokenizer/
Dpreprocessor.js44 const nextCp = this.html.charCodeAt(this.pos + 1);
46 if (unicode.isSurrogatePair(nextCp)) {
53 return unicode.getSurrogatePairCodePoint(cp, nextCp);
Dindex.js561 const nextCp = this._consume();
565 return nextCp === $.EQUALS_SIGN || isAsciiAlphaNumeric(nextCp);
/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()