HomeSort by relevance Sort by last modified time
    Searched refs:fcd16 (Results 1 - 25 of 26) sorted by null

1 2

  /external/icu/icu4c/source/i18n/
collationfcd.h 116 * @param fcd16 the FCD value (lccc/tccc combination) of a code point
117 * @return TRUE if fcd16 is from U+0F73, U+0F75 or U+0F81
119 static inline UBool isFCD16OfTibetanCompositeVowel(uint16_t fcd16) {
120 return fcd16 == 0x8182 || fcd16 == 0x8184;
uitercollationiterator.cpp 312 // Fetch the next character and its fcd16 value.
315 uint16_t fcd16 = nfcImpl.getFCD16(c);
316 uint8_t leadCC = (uint8_t)(fcd16 >> 8);
323 if(leadCC != 0 && (prevCC > leadCC || CollationFCD::isFCD16OfTibetanCompositeVowel(fcd16))) {
341 prevCC = (uint8_t)fcd16;
393 // Fetch the previous character and its fcd16 value.
396 uint16_t fcd16 = nfcImpl.getFCD16(c);
397 uint8_t trailCC = (uint8_t)fcd16;
405 CollationFCD::isFCD16OfTibetanCompositeVowel(fcd16))) {
407 while(fcd16 > 0xff)
    [all...]
utf8collationiterator.cpp 394 // Fetch the next character and its fcd16 value.
398 uint16_t fcd16 = nfcImpl.getFCD16(c);
399 uint8_t leadCC = (uint8_t)(fcd16 >> 8);
406 if(leadCC != 0 && (prevCC > leadCC || CollationFCD::isFCD16OfTibetanCompositeVowel(fcd16))) {
424 prevCC = (uint8_t)fcd16;
473 // Fetch the previous character and its fcd16 value.
477 uint16_t fcd16 = nfcImpl.getFCD16(c);
478 uint8_t trailCC = (uint8_t)fcd16;
486 CollationFCD::isFCD16OfTibetanCompositeVowel(fcd16))) {
488 while(fcd16 > 0xff && pos != 0)
    [all...]
utf16collationiterator.cpp 379 // Fetch the next character's fcd16 value.
381 uint16_t fcd16 = nfcImpl.nextFCD16(p, rawLimit);
382 uint8_t leadCC = (uint8_t)(fcd16 >> 8);
388 if(leadCC != 0 && (prevCC > leadCC || CollationFCD::isFCD16OfTibetanCompositeVowel(fcd16))) {
397 prevCC = (uint8_t)fcd16;
443 // Fetch the previous character's fcd16 value.
445 uint16_t fcd16 = nfcImpl.previousFCD16(rawStart, p);
446 uint8_t trailCC = (uint8_t)fcd16;
453 CollationFCD::isFCD16OfTibetanCompositeVowel(fcd16))) {
457 } while(fcd16 > 0xff && p != rawStart &
    [all...]
collationiterator.cpp 578 uint16_t fcd16 = d->getFCD16(c); local
579 U_ASSERT(fcd16 > 0xff); // The caller checked this already, as a shortcut.
587 uint8_t prevCC = (uint8_t)fcd16;
588 fcd16 = d->getFCD16(nextCp);
589 if(fcd16 <= 0xff) {
630 if(prevCC < (fcd16 >> 8) && USTRINGTRIE_HAS_VALUE(match = suffixes.nextForCodePoint(c))) {
642 prevCC = (uint8_t)fcd16;
646 fcd16 = d->getFCD16(c);
647 if(fcd16 <= 0xff) {
    [all...]
collationdatabuilder.cpp 1416 uint16_t fcd16 = nfcImpl.getFCD16(suffix.char32At(0)); local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
FCDIterCollationIterator.java 268 // Fetch the next character and its fcd16 value.
271 int fcd16 = nfcImpl.getFCD16(c); local
272 int leadCC = fcd16 >> 8;
279 if(leadCC != 0 && (prevCC > leadCC || CollationFCD.isFCD16OfTibetanCompositeVowel(fcd16))) {
297 prevCC = fcd16 & 0xff;
357 // Fetch the previous character and its fcd16 value.
360 int fcd16 = nfcImpl.getFCD16(c); local
361 int trailCC = fcd16 & 0xff;
369 CollationFCD.isFCD16OfTibetanCompositeVowel(fcd16))) {
371 while(fcd16 > 0xff)
    [all...]
FCDUTF16CollationIterator.java 254 // Fetch the next character's fcd16 value.
258 int fcd16 = nfcImpl.getFCD16(c); local
259 int leadCC = fcd16 >> 8;
265 if(leadCC != 0 && (prevCC > leadCC || CollationFCD.isFCD16OfTibetanCompositeVowel(fcd16))) {
277 prevCC = fcd16 & 0xff;
330 // Fetch the previous character's fcd16 value.
334 int fcd16 = nfcImpl.getFCD16(c);
335 int trailCC = fcd16 & 0xff;
342 CollationFCD.isFCD16OfTibetanCompositeVowel(fcd16))) {
346 if(fcd16 <= 0xff || p == rawStart) { break;
    [all...]
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) {
114 return fcd16 == 0x8182 || fcd16 == 0x8184;
CollationIterator.java 786 int fcd16 = d.getFCD16(c); local
787 assert(fcd16 > 0xff); // The caller checked this already, as a shortcut.
795 int prevCC = fcd16 & 0xff;
796 fcd16 = d.getFCD16(nextCp);
797 if(fcd16 <= 0xff) {
    [all...]
CollationDataBuilder.java 1085 int fcd16 = nfcImpl.getFCD16(suffix.codePointAt(0)); local
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
FCDIterCollationIterator.java 266 // Fetch the next character and its fcd16 value.
269 int fcd16 = nfcImpl.getFCD16(c); local
270 int leadCC = fcd16 >> 8;
277 if(leadCC != 0 && (prevCC > leadCC || CollationFCD.isFCD16OfTibetanCompositeVowel(fcd16))) {
295 prevCC = fcd16 & 0xff;
355 // Fetch the previous character and its fcd16 value.
358 int fcd16 = nfcImpl.getFCD16(c); local
359 int trailCC = fcd16 & 0xff;
367 CollationFCD.isFCD16OfTibetanCompositeVowel(fcd16))) {
369 while(fcd16 > 0xff)
    [all...]
FCDUTF16CollationIterator.java 252 // Fetch the next character's fcd16 value.
256 int fcd16 = nfcImpl.getFCD16(c); local
257 int leadCC = fcd16 >> 8;
263 if(leadCC != 0 && (prevCC > leadCC || CollationFCD.isFCD16OfTibetanCompositeVowel(fcd16))) {
275 prevCC = fcd16 & 0xff;
328 // Fetch the previous character's fcd16 value.
332 int fcd16 = nfcImpl.getFCD16(c);
333 int trailCC = fcd16 & 0xff;
340 CollationFCD.isFCD16OfTibetanCompositeVowel(fcd16))) {
344 if(fcd16 <= 0xff || p == rawStart) { break;
    [all...]
CollationFCD.java 108 * @param fcd16 the FCD value (lccc/tccc combination) of a code point
109 * @return true if fcd16 is from U+0F73, U+0F75 or U+0F81
111 static boolean isFCD16OfTibetanCompositeVowel(int fcd16) {
112 return fcd16 == 0x8182 || fcd16 == 0x8184;
CollationIterator.java 784 int fcd16 = d.getFCD16(c); local
785 assert(fcd16 > 0xff); // The caller checked this already, as a shortcut.
793 int prevCC = fcd16 & 0xff;
794 fcd16 = d.getFCD16(nextCp);
795 if(fcd16 <= 0xff) {
    [all...]
CollationDataBuilder.java 1084 int fcd16 = nfcImpl.getFCD16(suffix.codePointAt(0)); local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
Normalizer2Impl.java 500 // They might have different non-zero FCD16 values.
502 int fcd16=getFCD16(start); local
503 if(fcd16>0xff) { set.add(start); }
506 int fcd16=getFCD16(start); local
507 if(fcd16>0xff) { set.add(start, end); }
516 // They might have different non-zero FCD16 values.
519 int fcd16=getFCD16(start); local
520 if(fcd16!=prevFCD16) {
522 prevFCD16=fcd16;
747 int fcd16=firstUnit>>8; // tcc local
1431 int fcd16=0; local
1645 int fcd16=getFCD16(c); local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Normalizer2Impl.java 496 // They might have different non-zero FCD16 values.
498 int fcd16=getFCD16(start); local
499 if(fcd16>0xff) { set.add(start); }
502 int fcd16=getFCD16(start); local
503 if(fcd16>0xff) { set.add(start, end); }
512 // They might have different non-zero FCD16 values.
515 int fcd16=getFCD16(start); local
516 if(fcd16!=prevFCD16) {
518 prevFCD16=fcd16;
743 int fcd16=firstUnit>>8; // tcc local
1427 int fcd16=0; local
1641 int fcd16=getFCD16(c); local
    [all...]
  /external/icu/icu4c/source/common/
normalizer2impl.cpp 320 // They might have different non-zero FCD16 values.
322 uint16_t fcd16=impl.getFCD16(start); local
323 if(fcd16>0xff) { set.add(start); }
326 uint16_t fcd16=impl.getFCD16(start); local
327 if(fcd16>0xff) { set.add(start, end); }
362 // They might have different non-zero FCD16 values.
365 uint16_t fcd16=ctx->impl.getFCD16(start); local
366 if(fcd16!=prevFCD16) {
368 prevFCD16=fcd16;
742 // fcd16<=1 || trailCC==
1649 uint16_t fcd16=0; local
    [all...]
normalizer2impl.h 476 uint16_t fcd16=getFCD16(c); local
477 return fcd16<=1 || (fcd16&0xff)==0;
  /external/libgdx/backends/gdx-backend-moe/libs/
intel-moe-core.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/53.1/
icu4j-53.1.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/54.1.1/
icu4j-54.1.1.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 

Completed in 492 milliseconds

1 2