Home | History | Annotate | Download | only in i18n

Lines Matching refs:fcd16

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) {
410 fcd16 = nfcImpl.getFCD16(c);
411 if(fcd16 == 0) {
425 nextCC = (uint8_t)(fcd16 >> 8);