HomeSort by relevance Sort by last modified time
    Searched full:lccc (Results 1 - 25 of 25) sorted by null

  /external/icu/icu4c/source/i18n/
collationfcd.h 42 * has lccc!=0 or tccc!=0.
50 * has lccc!=0, for fast boundary checking between BMP & supplementary.
63 // U+0300 is the first character with lccc!=0.
84 // U+0300 is the first character with lccc!=0.
114 * They have distinct lccc/tccc combinations: 129/130 or 129/132.
116 * @param fcd16 the FCD value (lccc/tccc combination) of a code point
collation.h 154 * Bits 5..4: Reserved. May be used in the future to indicate lccc!=0 and tccc!=0.
295 /** Set if the first character of every contraction suffix has lccc!=0. */
297 /** Set if any contraction suffix ends with lccc!=0. */
collationiterator.cpp 323 // All contraction suffixes start with characters with lccc!=0
324 // but the next code point has lccc==0.
337 // All contraction suffixes start with characters with lccc!=0
338 // but the next code point has lccc==0.
521 // The last character of at least one suffix has lccc!=0,
    [all...]
collationdatareader.h 208 * Does not include [:^lccc=0:][:^tccc=0:].
collationdatareader.cpp 274 // new UnicodeSet("[[:^lccc=0:][\\udc00-\\udfff]]").
collationdatabuilder.cpp     [all...]
collationbuilder.cpp     [all...]
  /external/icu/icu4c/source/common/
normalizer2impl.cpp 279 // gennorm2 enforces lccc=0 for c<MIN_CCC_LCCC_CP=U+0300.
670 // Read the raw mapping from before the firstUnit and before the optional ccc/lccc word.
    [all...]
normalizer2impl.h 270 * @return The lccc(c) in bits 15..8 and tccc(c) in bits 7..0.
288 * @return The lccc(c) in bits 15..8 and tccc(c) in bits 7..0.
308 * @return The lccc(c) in bits 15..8 and tccc(c) in bits 7..0.
764 * has a non-zero FCD value (lccc!=0 or tccc!=0).
  /external/icu/icu4c/source/data/unidata/
ppucd.txt 62 property;Enumerated;lccc;Lead_Canonical_Combining_Class
762 value;lccc;0;NR;Not_Reordered
763 value;lccc;1;OV;Overlay
764 value;lccc;10;CCC10;CCC10
765 value;lccc;103;CCC103;CCC103
766 value;lccc;107;CCC107;CCC107
767 value;lccc;11;CCC11;CCC11
768 value;lccc;118;CCC118;CCC118
769 value;lccc;12;CCC12;CCC12
770 value;lccc;122;CCC122;CCC12
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationFCD.java 35 * has lccc!=0 or tccc!=0.
43 * has lccc!=0, for fast boundary checking between BMP & supplementary.
55 // U+0300 is the first character with lccc!=0.
76 // U+0300 is the first character with lccc!=0.
106 * They have distinct lccc/tccc combinations: 129/130 or 129/132.
108 * @param fcd16 the FCD value (lccc/tccc combination) of a code point
Collation.java 156 * Bits 5..4: Reserved. May be used in the future to indicate lccc!=0 and tccc!=0.
296 /** Set if the first character of every contraction suffix has lccc!=0. */
298 /** Set if any contraction suffix ends with lccc!=0. */
CollationIterator.java 519 // All contraction suffixes start with characters with lccc!=0
520 // but the next code point has lccc==0.
533 // All contraction suffixes start with characters with lccc!=0
534 // but the next code point has lccc==0.
731 // The last character of at least one suffix has lccc!=0,
    [all...]
CollationDataBuilder.java     [all...]
CollationDataReader.java 345 // new UnicodeSet("[[:^lccc=0:][\\udc00-\\udfff]]").
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Normalizer2Impl.java 475 // gennorm2 enforces lccc=0 for c<MIN_CCC_LCCC_CP=U+0300.
703 * @return The lccc(c) in bits 15..8 and tccc(c) in bits 7..0.
746 // get the worst-case lccc and tccc values because arbitrary
752 fcd16|=extraData.charAt(norm16-1)&0xff00; // lccc
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
UProperty.java 645 * of the decomposition, or lccc(c)=ccc(NFD(c)[0]).
656 * of the decomposition, or lccc(c)=ccc(NFD(c)[last]).
  /external/icu/icu4c/source/test/intltest/
collationtest.cpp 338 UnicodeSet expectedLccc("[:^lccc=0:]", errorCode);
342 UnicodeSet lccc; // actual local
344 if(CollationFCD::hasLccc(c)) { lccc.add(c); }
347 diff.removeAll(lccc);
353 diff = lccc;
    [all...]
usettest.cpp     [all...]
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
CollationTest.java 394 UnicodeSet expectedLccc = new UnicodeSet("[:^lccc=0:]");
398 UnicodeSet lccc = new UnicodeSet(); // actual local
401 lccc.add(c);
406 diff.removeAll(lccc);
415 diff = lccc;
    [all...]
  /external/icu/icu4c/source/tools/gennorm2/
n2builder.cpp 676 // That is the same as the length of the optional data for the raw mapping and the ccc/lccc word.
697 "U+%04lX below U+0300 has ccc!=0 or lccc!=0, not supported by ICU\n",
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
UnicodeSetTest.java     [all...]
  /external/icu/icu4c/source/test/cintltst/
cnormtst.c     [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
BasicTest.java 710 errln("getIntPropertyValue(lccc)="+lccc1+" != "+lccc2+"=getCombiningClass(lead) for U+"+Integer.toHexString(c));
    [all...]
  /external/icu/icu4c/source/common/unicode/
uchar.h 456 of the decomposition, or lccc(c)=ccc(NFD(c)[0]).
    [all...]

Completed in 386 milliseconds