Home | History | Annotate | Download | only in i18n

Lines Matching refs:fcd16

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) {
491 fcd16 = nfcImpl.getFCD16(c);
492 if(fcd16 == 0) {
506 nextCC = (uint8_t)(fcd16 >> 8);