/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
H A D | FCDIterCollationIterator.java | 268 // Fetch the next character and its fcd16 value. in nextSegment() 271 int fcd16 = nfcImpl.getFCD16(c); in nextSegment() 272 int leadCC = fcd16 >> 8; in nextSegment() 279 if(leadCC != 0 && (prevCC > leadCC || CollationFCD.isFCD16OfTibetanCompositeVowel(fcd16))) { in nextSegment() 297 prevCC = fcd16 & 0xff; in nextSegment() 357 // Fetch the previous character and its fcd16 value. in previousSegment() 360 int fcd16 = nfcImpl.getFCD16(c); in previousSegment() 361 int trailCC = fcd16 & 0xff; in previousSegment() 369 CollationFCD.isFCD16OfTibetanCompositeVowel(fcd16))) { in previousSegment() 371 while(fcd16 > in previousSegment() [all...] |
H A D | FCDUTF16CollationIterator.java | 264 // Fetch the next character's fcd16 value. in nextSegment() 268 int fcd16 = nfcImpl.getFCD16(c); in nextSegment() 269 int leadCC = fcd16 >> 8; in nextSegment() 275 if(leadCC != 0 && (prevCC > leadCC || CollationFCD.isFCD16OfTibetanCompositeVowel(fcd16))) { in nextSegment() 287 prevCC = fcd16 & 0xff; in nextSegment() 340 // Fetch the previous character's fcd16 value. in previousSegment() 344 int fcd16 = nfcImpl.getFCD16(c); in previousSegment() 345 int trailCC = fcd16 & 0xff; in previousSegment() 352 CollationFCD.isFCD16OfTibetanCompositeVowel(fcd16))) { in previousSegment() 356 if(fcd16 < in previousSegment() [all...] |
H A D | CollationIterator.java | 792 int fcd16 = d.getFCD16(c); in nextCE32FromDiscontiguousContraction() 793 assert(fcd16 > 0xff); // The caller checked this already, as a shortcut. in nextCE32FromDiscontiguousContraction() 801 int prevCC = fcd16 & 0xff; in nextCE32FromDiscontiguousContraction() 802 fcd16 = d.getFCD16(nextCp); in nextCE32FromDiscontiguousContraction() 803 if(fcd16 <= 0xff) { in nextCE32FromDiscontiguousContraction() 840 if(prevCC < (fcd16 >> 8) && (match = suffixes.nextForCodePoint(c)).hasValue()) { in nextCE32FromDiscontiguousContraction() 852 prevCC = fcd16 & 0xff; in nextCE32FromDiscontiguousContraction() 856 fcd16 = d.getFCD16(c); in nextCE32FromDiscontiguousContraction() 857 if(fcd16 <= 0xff) { in nextCE32FromDiscontiguousContraction()
|
H A D | CollationFCD.java | 110 * @param fcd16 the FCD value (lccc/tccc combination) of a code point 111 * @return true if fcd16 is from U+0F73, U+0F75 or U+0F81 113 static boolean isFCD16OfTibetanCompositeVowel(int fcd16) { in isFCD16OfTibetanCompositeVowel() argument 114 return fcd16 == 0x8182 || fcd16 == 0x8184; in isFCD16OfTibetanCompositeVowel()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/coll/ |
H A D | FCDIterCollationIterator.java | 270 // Fetch the next character and its fcd16 value. in nextSegment() 273 int fcd16 = nfcImpl.getFCD16(c); in nextSegment() 274 int leadCC = fcd16 >> 8; in nextSegment() 281 if(leadCC != 0 && (prevCC > leadCC || CollationFCD.isFCD16OfTibetanCompositeVowel(fcd16))) { in nextSegment() 299 prevCC = fcd16 & 0xff; in nextSegment() 359 // Fetch the previous character and its fcd16 value. in previousSegment() 362 int fcd16 = nfcImpl.getFCD16(c); in previousSegment() 363 int trailCC = fcd16 & 0xff; in previousSegment() 371 CollationFCD.isFCD16OfTibetanCompositeVowel(fcd16))) { in previousSegment() 373 while(fcd16 > in previousSegment() [all...] |
H A D | FCDUTF16CollationIterator.java | 266 // Fetch the next character's fcd16 value. in nextSegment() 270 int fcd16 = nfcImpl.getFCD16(c); in nextSegment() 271 int leadCC = fcd16 >> 8; in nextSegment() 277 if(leadCC != 0 && (prevCC > leadCC || CollationFCD.isFCD16OfTibetanCompositeVowel(fcd16))) { in nextSegment() 289 prevCC = fcd16 & 0xff; in nextSegment() 342 // Fetch the previous character's fcd16 value. in previousSegment() 346 int fcd16 = nfcImpl.getFCD16(c); in previousSegment() 347 int trailCC = fcd16 & 0xff; in previousSegment() 354 CollationFCD.isFCD16OfTibetanCompositeVowel(fcd16))) { in previousSegment() 358 if(fcd16 < in previousSegment() [all...] |
H A D | CollationIterator.java | 794 int fcd16 = d.getFCD16(c); in nextCE32FromDiscontiguousContraction() 795 assert(fcd16 > 0xff); // The caller checked this already, as a shortcut. in nextCE32FromDiscontiguousContraction() 803 int prevCC = fcd16 & 0xff; in nextCE32FromDiscontiguousContraction() 804 fcd16 = d.getFCD16(nextCp); in nextCE32FromDiscontiguousContraction() 805 if(fcd16 <= 0xff) { in nextCE32FromDiscontiguousContraction() 842 if(prevCC < (fcd16 >> 8) && (match = suffixes.nextForCodePoint(c)).hasValue()) { in nextCE32FromDiscontiguousContraction() 854 prevCC = fcd16 & 0xff; in nextCE32FromDiscontiguousContraction() 858 fcd16 = d.getFCD16(c); in nextCE32FromDiscontiguousContraction() 859 if(fcd16 <= 0xff) { in nextCE32FromDiscontiguousContraction()
|
H A D | CollationFCD.java | 112 * @param fcd16 the FCD value (lccc/tccc combination) of a code point 113 * @return true if fcd16 is from U+0F73, U+0F75 or U+0F81 115 static boolean isFCD16OfTibetanCompositeVowel(int fcd16) { in isFCD16OfTibetanCompositeVowel() argument 116 return fcd16 == 0x8182 || fcd16 == 0x8184; in isFCD16OfTibetanCompositeVowel()
|
/third_party/icu/icu4c/source/i18n/ |
H A D | utf8collationiterator.cpp | 394 // Fetch the next character and its fcd16 value. in nextSegment() 398 uint16_t fcd16 = nfcImpl.getFCD16(c); in nextSegment() local 399 uint8_t leadCC = (uint8_t)(fcd16 >> 8); in nextSegment() 406 if(leadCC != 0 && (prevCC > leadCC || CollationFCD::isFCD16OfTibetanCompositeVowel(fcd16))) { in nextSegment() 424 prevCC = (uint8_t)fcd16; in nextSegment() 473 // Fetch the previous character and its fcd16 value. in previousSegment() 477 uint16_t fcd16 = nfcImpl.getFCD16(c); in previousSegment() local 478 uint8_t trailCC = (uint8_t)fcd16; in previousSegment() 486 CollationFCD::isFCD16OfTibetanCompositeVowel(fcd16))) { in previousSegment() 488 while(fcd16 > in previousSegment() [all...] |
H A D | uitercollationiterator.cpp | 314 // Fetch the next character and its fcd16 value. 317 uint16_t fcd16 = nfcImpl.getFCD16(c); 318 uint8_t leadCC = (uint8_t)(fcd16 >> 8); 325 if(leadCC != 0 && (prevCC > leadCC || CollationFCD::isFCD16OfTibetanCompositeVowel(fcd16))) { 343 prevCC = (uint8_t)fcd16; 395 // Fetch the previous character and its fcd16 value. 398 uint16_t fcd16 = nfcImpl.getFCD16(c); 399 uint8_t trailCC = (uint8_t)fcd16; 407 CollationFCD::isFCD16OfTibetanCompositeVowel(fcd16))) { 409 while(fcd16 > [all...] |
H A D | utf16collationiterator.cpp | 381 // Fetch the next character's fcd16 value. 383 uint16_t fcd16 = nfcImpl.nextFCD16(p, rawLimit); 384 uint8_t leadCC = (uint8_t)(fcd16 >> 8); 390 if(leadCC != 0 && (prevCC > leadCC || CollationFCD::isFCD16OfTibetanCompositeVowel(fcd16))) { 399 prevCC = (uint8_t)fcd16; 445 // Fetch the previous character's fcd16 value. 447 uint16_t fcd16 = nfcImpl.previousFCD16(rawStart, p); 448 uint8_t trailCC = (uint8_t)fcd16; 455 CollationFCD::isFCD16OfTibetanCompositeVowel(fcd16))) { 459 } while(fcd16 > [all...] |
H A D | collationfcd.h | 118 * @param fcd16 the FCD value (lccc/tccc combination) of a code point 119 * @return true if fcd16 is from U+0F73, U+0F75 or U+0F81 121 static inline UBool isFCD16OfTibetanCompositeVowel(uint16_t fcd16) { in isFCD16OfTibetanCompositeVowel() argument 122 return fcd16 == 0x8182 || fcd16 == 0x8184; in isFCD16OfTibetanCompositeVowel()
|
H A D | collationiterator.cpp | 580 uint16_t fcd16 = d->getFCD16(c); in nextCE32FromDiscontiguousContraction() local 581 U_ASSERT(fcd16 > 0xff); // The caller checked this already, as a shortcut. in nextCE32FromDiscontiguousContraction() 589 uint8_t prevCC = (uint8_t)fcd16; in nextCE32FromDiscontiguousContraction() 590 fcd16 = d->getFCD16(nextCp); in nextCE32FromDiscontiguousContraction() 591 if(fcd16 <= 0xff) { in nextCE32FromDiscontiguousContraction() 632 if(prevCC < (fcd16 >> 8) && USTRINGTRIE_HAS_VALUE(match = suffixes.nextForCodePoint(c))) { in nextCE32FromDiscontiguousContraction() 644 prevCC = (uint8_t)fcd16; in nextCE32FromDiscontiguousContraction() 648 fcd16 = d->getFCD16(c); in nextCE32FromDiscontiguousContraction() 649 if(fcd16 <= 0xff) { in nextCE32FromDiscontiguousContraction()
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | uitercollationiterator.cpp | 314 // Fetch the next character and its fcd16 value. 317 uint16_t fcd16 = nfcImpl.getFCD16(c); 318 uint8_t leadCC = (uint8_t)(fcd16 >> 8); 325 if(leadCC != 0 && (prevCC > leadCC || CollationFCD::isFCD16OfTibetanCompositeVowel(fcd16))) { 343 prevCC = (uint8_t)fcd16; 395 // Fetch the previous character and its fcd16 value. 398 uint16_t fcd16 = nfcImpl.getFCD16(c); 399 uint8_t trailCC = (uint8_t)fcd16; 407 CollationFCD::isFCD16OfTibetanCompositeVowel(fcd16))) { 409 while(fcd16 > [all...] |
H A D | utf8collationiterator.cpp | 394 // Fetch the next character and its fcd16 value. in nextSegment() 398 uint16_t fcd16 = nfcImpl.getFCD16(c); in nextSegment() local 399 uint8_t leadCC = (uint8_t)(fcd16 >> 8); in nextSegment() 406 if(leadCC != 0 && (prevCC > leadCC || CollationFCD::isFCD16OfTibetanCompositeVowel(fcd16))) { in nextSegment() 424 prevCC = (uint8_t)fcd16; in nextSegment() 473 // Fetch the previous character and its fcd16 value. in previousSegment() 477 uint16_t fcd16 = nfcImpl.getFCD16(c); in previousSegment() local 478 uint8_t trailCC = (uint8_t)fcd16; in previousSegment() 486 CollationFCD::isFCD16OfTibetanCompositeVowel(fcd16))) { in previousSegment() 488 while(fcd16 > in previousSegment() [all...] |
H A D | utf16collationiterator.cpp | 381 // Fetch the next character's fcd16 value. 383 uint16_t fcd16 = nfcImpl.nextFCD16(p, rawLimit); 384 uint8_t leadCC = (uint8_t)(fcd16 >> 8); 390 if(leadCC != 0 && (prevCC > leadCC || CollationFCD::isFCD16OfTibetanCompositeVowel(fcd16))) { 399 prevCC = (uint8_t)fcd16; 445 // Fetch the previous character's fcd16 value. 447 uint16_t fcd16 = nfcImpl.previousFCD16(rawStart, p); 448 uint8_t trailCC = (uint8_t)fcd16; 455 CollationFCD::isFCD16OfTibetanCompositeVowel(fcd16))) { 459 } while(fcd16 > [all...] |
H A D | collationfcd.h | 118 * @param fcd16 the FCD value (lccc/tccc combination) of a code point 119 * @return true if fcd16 is from U+0F73, U+0F75 or U+0F81 121 static inline UBool isFCD16OfTibetanCompositeVowel(uint16_t fcd16) { in isFCD16OfTibetanCompositeVowel() argument 122 return fcd16 == 0x8182 || fcd16 == 0x8184; in isFCD16OfTibetanCompositeVowel()
|
H A D | collationiterator.cpp | 580 uint16_t fcd16 = d->getFCD16(c); in nextCE32FromDiscontiguousContraction() local 581 U_ASSERT(fcd16 > 0xff); // The caller checked this already, as a shortcut. in nextCE32FromDiscontiguousContraction() 589 uint8_t prevCC = (uint8_t)fcd16; in nextCE32FromDiscontiguousContraction() 590 fcd16 = d->getFCD16(nextCp); in nextCE32FromDiscontiguousContraction() 591 if(fcd16 <= 0xff) { in nextCE32FromDiscontiguousContraction() 632 if(prevCC < (fcd16 >> 8) && USTRINGTRIE_HAS_VALUE(match = suffixes.nextForCodePoint(c))) { in nextCE32FromDiscontiguousContraction() 644 prevCC = (uint8_t)fcd16; in nextCE32FromDiscontiguousContraction() 648 fcd16 = d->getFCD16(c); in nextCE32FromDiscontiguousContraction() 649 if(fcd16 <= 0xff) { in nextCE32FromDiscontiguousContraction()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | uitercollationiterator.cpp | 314 // Fetch the next character and its fcd16 value. 317 uint16_t fcd16 = nfcImpl.getFCD16(c); 318 uint8_t leadCC = (uint8_t)(fcd16 >> 8); 325 if(leadCC != 0 && (prevCC > leadCC || CollationFCD::isFCD16OfTibetanCompositeVowel(fcd16))) { 343 prevCC = (uint8_t)fcd16; 395 // Fetch the previous character and its fcd16 value. 398 uint16_t fcd16 = nfcImpl.getFCD16(c); 399 uint8_t trailCC = (uint8_t)fcd16; 407 CollationFCD::isFCD16OfTibetanCompositeVowel(fcd16))) { 409 while(fcd16 > [all...] |
H A D | utf8collationiterator.cpp | 394 // Fetch the next character and its fcd16 value. in nextSegment() 398 uint16_t fcd16 = nfcImpl.getFCD16(c); in nextSegment() local 399 uint8_t leadCC = (uint8_t)(fcd16 >> 8); in nextSegment() 406 if(leadCC != 0 && (prevCC > leadCC || CollationFCD::isFCD16OfTibetanCompositeVowel(fcd16))) { in nextSegment() 424 prevCC = (uint8_t)fcd16; in nextSegment() 473 // Fetch the previous character and its fcd16 value. in previousSegment() 477 uint16_t fcd16 = nfcImpl.getFCD16(c); in previousSegment() local 478 uint8_t trailCC = (uint8_t)fcd16; in previousSegment() 486 CollationFCD::isFCD16OfTibetanCompositeVowel(fcd16))) { in previousSegment() 488 while(fcd16 > in previousSegment() [all...] |
H A D | utf16collationiterator.cpp | 381 // Fetch the next character's fcd16 value. 383 uint16_t fcd16 = nfcImpl.nextFCD16(p, rawLimit); 384 uint8_t leadCC = (uint8_t)(fcd16 >> 8); 390 if(leadCC != 0 && (prevCC > leadCC || CollationFCD::isFCD16OfTibetanCompositeVowel(fcd16))) { 399 prevCC = (uint8_t)fcd16; 445 // Fetch the previous character's fcd16 value. 447 uint16_t fcd16 = nfcImpl.previousFCD16(rawStart, p); 448 uint8_t trailCC = (uint8_t)fcd16; 455 CollationFCD::isFCD16OfTibetanCompositeVowel(fcd16))) { 459 } while(fcd16 > [all...] |
H A D | collationfcd.h | 118 * @param fcd16 the FCD value (lccc/tccc combination) of a code point 119 * @return true if fcd16 is from U+0F73, U+0F75 or U+0F81 121 static inline UBool isFCD16OfTibetanCompositeVowel(uint16_t fcd16) { in isFCD16OfTibetanCompositeVowel() argument 122 return fcd16 == 0x8182 || fcd16 == 0x8184; in isFCD16OfTibetanCompositeVowel()
|
H A D | collationiterator.cpp | 580 uint16_t fcd16 = d->getFCD16(c); in nextCE32FromDiscontiguousContraction() local 581 U_ASSERT(fcd16 > 0xff); // The caller checked this already, as a shortcut. in nextCE32FromDiscontiguousContraction() 589 uint8_t prevCC = (uint8_t)fcd16; in nextCE32FromDiscontiguousContraction() 590 fcd16 = d->getFCD16(nextCp); in nextCE32FromDiscontiguousContraction() 591 if(fcd16 <= 0xff) { in nextCE32FromDiscontiguousContraction() 632 if(prevCC < (fcd16 >> 8) && USTRINGTRIE_HAS_VALUE(match = suffixes.nextForCodePoint(c))) { in nextCE32FromDiscontiguousContraction() 644 prevCC = (uint8_t)fcd16; in nextCE32FromDiscontiguousContraction() 648 fcd16 = d->getFCD16(c); in nextCE32FromDiscontiguousContraction() 649 if(fcd16 <= 0xff) { in nextCE32FromDiscontiguousContraction()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | Normalizer2Impl.java | 523 int fcd16 = getFCD16(start); in addLcccChars() 524 if (fcd16 > 0xff) { set.add(start, end); } in addLcccChars() 545 int fcd16 = getFCD16(start); in addPropertyStarts() 546 if (fcd16 != prevFCD16) { in addPropertyStarts() 548 prevFCD16 = fcd16; in addPropertyStarts() 777 int fcd16=firstUnit>>8; // tccc in getFCD16FromNormData() 779 fcd16|=extraData.charAt(mapping-1)&0xff00; // lccc in getFCD16FromNormData() 781 return fcd16; in getFCD16FromNormData() 1477 int fcd16=0; in makeFCD() 1495 if((fcd16 in makeFCD() [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | Normalizer2Impl.java | 532 int fcd16 = getFCD16(start); in addLcccChars() 533 if (fcd16 > 0xff) { set.add(start, end); } in addLcccChars() 554 int fcd16 = getFCD16(start); in addPropertyStarts() 555 if (fcd16 != prevFCD16) { in addPropertyStarts() 557 prevFCD16 = fcd16; in addPropertyStarts() 786 int fcd16=firstUnit>>8; // tccc in getFCD16FromNormData() 788 fcd16|=extraData.charAt(mapping-1)&0xff00; // lccc in getFCD16FromNormData() 790 return fcd16; in getFCD16FromNormData() 1486 int fcd16=0; in makeFCD() 1504 if((fcd16 in makeFCD() [all...] |