Searched refs:nextCp (Results 1 – 9 of 9) sorted by relevance
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
D | CollationIterator.java | 508 int nextCp; in appendCEsFromCE32() local 512 nextCp = nextCodePoint(); in appendCEsFromCE32() 513 if(nextCp < 0) { in appendCEsFromCE32() 518 !CollationFCD.mayHaveLccc(nextCp)) { in appendCEsFromCE32() 526 nextCp = nextSkippedCodePoint(); in appendCEsFromCE32() 527 if(nextCp < 0) { in appendCEsFromCE32() 532 !CollationFCD.mayHaveLccc(nextCp)) { in appendCEsFromCE32() 540 ce32 = nextCE32FromContraction(d, ce32, d.contexts, index + 2, defaultCE32, nextCp); in appendCEsFromCE32() 715 int nextCp; in nextCE32FromContraction() local 723 } else if(match == BytesTrie.Result.NO_MATCH || (nextCp = nextSkippedCodePoint()) < 0) { in nextCE32FromContraction() [all …]
|
/external/icu/icu4c/source/i18n/ |
D | collationiterator.cpp | 312 UChar32 nextCp; in appendCEsFromCE32() local 316 nextCp = nextCodePoint(errorCode); in appendCEsFromCE32() 317 if(nextCp < 0) { in appendCEsFromCE32() 322 !CollationFCD::mayHaveLccc(nextCp)) { in appendCEsFromCE32() 330 nextCp = nextSkippedCodePoint(errorCode); in appendCEsFromCE32() 331 if(nextCp < 0) { in appendCEsFromCE32() 336 !CollationFCD::mayHaveLccc(nextCp)) { in appendCEsFromCE32() 344 ce32 = nextCE32FromContraction(d, ce32, p + 2, defaultCE32, nextCp, errorCode); in appendCEsFromCE32() 505 UChar32 nextCp; in nextCE32FromContraction() local 513 } else if(match == USTRINGTRIE_NO_MATCH || (nextCp = nextSkippedCodePoint(errorCode)) < 0) { in nextCE32FromContraction() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/ |
D | CollationIterator.java | 510 int nextCp; in appendCEsFromCE32() local 514 nextCp = nextCodePoint(); in appendCEsFromCE32() 515 if(nextCp < 0) { in appendCEsFromCE32() 520 !CollationFCD.mayHaveLccc(nextCp)) { in appendCEsFromCE32() 528 nextCp = nextSkippedCodePoint(); in appendCEsFromCE32() 529 if(nextCp < 0) { in appendCEsFromCE32() 534 !CollationFCD.mayHaveLccc(nextCp)) { in appendCEsFromCE32() 542 ce32 = nextCE32FromContraction(d, ce32, d.contexts, index + 2, defaultCE32, nextCp); in appendCEsFromCE32() 717 int nextCp; in nextCE32FromContraction() local 725 } else if(match == BytesTrie.Result.NO_MATCH || (nextCp = nextSkippedCodePoint()) < 0) { in nextCE32FromContraction() [all …]
|
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/tokenization/ |
D | preprocessor.js | 85 var nextCp = this.html.charCodeAt(this.pos + 1); 87 if (isSurrogatePair(cp, nextCp)) { 90 cp = getSurrogatePairCodePoint(cp, nextCp);
|
D | tokenizer.js | 432 nextCp = void 0; 436 nextCp = this._lookahead(); 437 } while (nextCp !== $.EOF && isDigit(nextCp, isHex)); 490 var nextCp = this._lookahead(); 492 if (nextCp === $.EQUALS_SIGN || isAsciiAlphaNumeric(nextCp)) { 518 nextCp = this._lookahead(); 520 if (nextCp === $.LATIN_SMALL_X || nextCp === $.LATIN_CAPITAL_X) { 525 nextCp = this._lookahead(); 528 if (nextCp !== $.EOF && isDigit(nextCp, isHex))
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/ |
D | CharsTrieTest.java | 686 int nextCp=expectedString.length()>1 ? expectedString.charAt(1) : 0; in checkFirst() local 689 BytesTrie.Result nextResult=trie.next(nextCp); in checkFirst() 693 nextResult!=trie.next(nextCp) in checkFirst() 700 nextCp=expectedString.length()>cLength ? expectedString.codePointAt(cLength) : 0; in checkFirst() 703 nextResult=trie.nextForCodePoint(nextCp); in checkFirst() 707 nextResult!=trie.nextForCodePoint(nextCp) in checkFirst()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
D | CharsTrieTest.java | 682 int nextCp=expectedString.length()>1 ? expectedString.charAt(1) : 0; in checkFirst() local 685 BytesTrie.Result nextResult=trie.next(nextCp); in checkFirst() 689 nextResult!=trie.next(nextCp) in checkFirst() 696 nextCp=expectedString.length()>cLength ? expectedString.codePointAt(cLength) : 0; in checkFirst() 699 nextResult=trie.nextForCodePoint(nextCp); in checkFirst() 703 nextResult!=trie.nextForCodePoint(nextCp) in checkFirst()
|
/external/icu/icu4c/source/test/intltest/ |
D | ucharstrietest.cpp | 825 UChar32 nextCp=expectedString.length()>1 ? expectedString[1] : 0; in checkFirst() local 828 UStringTrieResult nextResult=trie.next(nextCp); in checkFirst() 832 nextResult!=trie.next(nextCp) in checkFirst() 839 nextCp=expectedString.length()>cLength ? expectedString.char32At(cLength) : 0; in checkFirst() 842 nextResult=trie.nextForCodePoint(nextCp); in checkFirst() 846 nextResult!=trie.nextForCodePoint(nextCp) in checkFirst()
|
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/ |
D | parse5.js | 1417 var nextCp = this.html.charCodeAt(this.pos + 1); 1419 if (isSurrogatePair(cp, nextCp)) { 1422 cp = getSurrogatePairCodePoint(cp, nextCp); 1881 nextCp = void 0; 1885 nextCp = this._lookahead(); 1886 } while (nextCp !== $.EOF && isDigit(nextCp, isHex)); 1939 var nextCp = this._lookahead(); 1941 if (nextCp === $.EQUALS_SIGN || isAsciiAlphaNumeric(nextCp)) { 1967 nextCp = this._lookahead(); 1969 if (nextCp === $.LATIN_SMALL_X || nextCp === $.LATIN_CAPITAL_X) { [all …]
|