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

1 2

  /external/icu/icu4c/source/i18n/
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) {
122 return fcd16 == 0x8182 || fcd16 == 0x8184;
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 > 0xff)
    [all...]
utf8collationiterator.cpp 394 // Fetch the next character and its fcd16 value.
398 uint16_t fcd16 = nfcImpl.getFCD16(c); local
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); local
478 uint8_t trailCC = (uint8_t)fcd16;
486 CollationFCD::isFCD16OfTibetanCompositeVowel(fcd16))) {
488 while(fcd16 > 0xff && pos != 0)
    [all...]
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 > 0xff && p != rawStart &
    [all...]
collationiterator.cpp 580 uint16_t fcd16 = d->getFCD16(c); local
581 U_ASSERT(fcd16 > 0xff); // The caller checked this already, as a shortcut.
589 uint8_t prevCC = (uint8_t)fcd16;
590 fcd16 = d->getFCD16(nextCp);
591 if(fcd16 <= 0xff) {
632 if(prevCC < (fcd16 >> 8) && USTRINGTRIE_HAS_VALUE(match = suffixes.nextForCodePoint(c))) {
644 prevCC = (uint8_t)fcd16;
648 fcd16 = d->getFCD16(c);
649 if(fcd16 <= 0xff) {
    [all...]
collationdatabuilder.cpp 1418 uint16_t fcd16 = nfcImpl.getFCD16(suffix.char32At(0)); local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
FCDIterCollationIterator.java 270 // Fetch the next character and its fcd16 value.
273 int fcd16 = nfcImpl.getFCD16(c); local
274 int leadCC = fcd16 >> 8;
281 if(leadCC != 0 && (prevCC > leadCC || CollationFCD.isFCD16OfTibetanCompositeVowel(fcd16))) {
299 prevCC = fcd16 & 0xff;
359 // Fetch the previous character and its fcd16 value.
362 int fcd16 = nfcImpl.getFCD16(c); local
363 int trailCC = fcd16 & 0xff;
371 CollationFCD.isFCD16OfTibetanCompositeVowel(fcd16))) {
373 while(fcd16 > 0xff)
    [all...]
FCDUTF16CollationIterator.java 266 // Fetch the next character's fcd16 value.
270 int fcd16 = nfcImpl.getFCD16(c); local
271 int leadCC = fcd16 >> 8;
277 if(leadCC != 0 && (prevCC > leadCC || CollationFCD.isFCD16OfTibetanCompositeVowel(fcd16))) {
289 prevCC = fcd16 & 0xff;
342 // Fetch the previous character's fcd16 value.
346 int fcd16 = nfcImpl.getFCD16(c);
347 int trailCC = fcd16 & 0xff;
354 CollationFCD.isFCD16OfTibetanCompositeVowel(fcd16))) {
358 if(fcd16 <= 0xff || p == rawStart) { break;
    [all...]
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) {
116 return fcd16 == 0x8182 || fcd16 == 0x8184;
CollationIterator.java 794 int fcd16 = d.getFCD16(c); local
795 assert(fcd16 > 0xff); // The caller checked this already, as a shortcut.
803 int prevCC = fcd16 & 0xff;
804 fcd16 = d.getFCD16(nextCp);
805 if(fcd16 <= 0xff) {
    [all...]
CollationDataBuilder.java 1087 int fcd16 = nfcImpl.getFCD16(suffix.codePointAt(0)); local
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/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 264 // Fetch the next character's fcd16 value.
268 int fcd16 = nfcImpl.getFCD16(c); local
269 int leadCC = fcd16 >> 8;
275 if(leadCC != 0 && (prevCC > leadCC || CollationFCD.isFCD16OfTibetanCompositeVowel(fcd16))) {
287 prevCC = fcd16 & 0xff;
340 // Fetch the previous character's fcd16 value.
344 int fcd16 = nfcImpl.getFCD16(c);
345 int trailCC = fcd16 & 0xff;
352 CollationFCD.isFCD16OfTibetanCompositeVowel(fcd16))) {
356 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 792 int fcd16 = d.getFCD16(c); local
793 assert(fcd16 > 0xff); // The caller checked this already, as a shortcut.
801 int prevCC = fcd16 & 0xff;
802 fcd16 = d.getFCD16(nextCp);
803 if(fcd16 <= 0xff) {
    [all...]
CollationDataBuilder.java 1086 int fcd16 = nfcImpl.getFCD16(suffix.codePointAt(0)); local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
Normalizer2Impl.java 496 int fcd16=getFCD16(start); local
497 if(fcd16>0xff) { set.add(start, end); }
506 // They might have different non-zero FCD16 values.
509 int fcd16=getFCD16(start); local
510 if(fcd16!=prevFCD16) {
512 prevFCD16=fcd16;
745 int fcd16=firstUnit>>8; // tccc local
747 fcd16|=extraData.charAt(mapping-1)&0xff00; // lccc
749 return fcd16;
1461 int fcd16=0; local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Normalizer2Impl.java 494 int fcd16=getFCD16(start); local
495 if(fcd16>0xff) { set.add(start, end); }
504 // They might have different non-zero FCD16 values.
507 int fcd16=getFCD16(start); local
508 if(fcd16!=prevFCD16) {
510 prevFCD16=fcd16;
743 int fcd16=firstUnit>>8; // tccc local
745 fcd16|=extraData.charAt(mapping-1)&0xff00; // lccc
747 return fcd16;
1459 int fcd16=0; local
    [all...]
  /external/icu/icu4c/source/common/
normalizer2impl.cpp 457 uint16_t fcd16=impl.getFCD16(start);
458 if(fcd16>0xff) { set.add(start, end); }
496 // They might have different non-zero FCD16 values.
499 uint16_t fcd16=ctx->impl.getFCD16(start);
500 if(fcd16!=prevFCD16) {
502 prevFCD16=fcd16;
    [all...]
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
icu4j-53.1.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
icu4j-53.1.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
icu4j-53.1.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
icu4j-53.1.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/53.1/
icu4j-53.1.jar 

Completed in 307 milliseconds

1 2