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

  /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/icu4c/source/i18n/
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/icu4c/source/common/
normalizer2impl.cpp 322 // They might have different non-zero FCD16 values.
324 uint16_t fcd16=impl.getFCD16(start); local
325 if(fcd16>0xff) { set.add(start); }
328 uint16_t fcd16=impl.getFCD16(start); local
329 if(fcd16>0xff) { set.add(start, end); }
364 // They might have different non-zero FCD16 values.
367 uint16_t fcd16=ctx->impl.getFCD16(start); local
368 if(fcd16!=prevFCD16) {
370 prevFCD16=fcd16;
744 // fcd16<=1 || trailCC==
1651 uint16_t fcd16=0; local
    [all...]
normalizer2impl.h 478 uint16_t fcd16=getFCD16(c); local
479 return fcd16<=1 || (fcd16&0xff)==0;
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
Normalizer2Impl.java 506 // They might have different non-zero FCD16 values.
508 int fcd16=getFCD16(start); local
509 if(fcd16>0xff) { set.add(start); }
512 int fcd16=getFCD16(start); local
513 if(fcd16>0xff) { set.add(start, end); }
522 // They might have different non-zero FCD16 values.
525 int fcd16=getFCD16(start); local
526 if(fcd16!=prevFCD16) {
528 prevFCD16=fcd16;
754 int fcd16=firstUnit>>8; // tcc local
1438 int fcd16=0; local
1652 int fcd16=getFCD16(c); local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Normalizer2Impl.java 502 // They might have different non-zero FCD16 values.
504 int fcd16=getFCD16(start); local
505 if(fcd16>0xff) { set.add(start); }
508 int fcd16=getFCD16(start); local
509 if(fcd16>0xff) { set.add(start, end); }
518 // They might have different non-zero FCD16 values.
521 int fcd16=getFCD16(start); local
522 if(fcd16!=prevFCD16) {
524 prevFCD16=fcd16;
750 int fcd16=firstUnit>>8; // tcc local
1434 int fcd16=0; local
1648 int fcd16=getFCD16(c); local
    [all...]
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/misc/common/robolectric/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 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 

Completed in 4341 milliseconds