HomeSort by relevance Sort by last modified time
    Searched defs:fcd16 (Results 1 - 21 of 21) sorted by null

  /external/icu/icu4c/source/i18n/
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...]
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...]
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...]
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...]
  /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 
  /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 269 milliseconds