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

  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue137/
SupplementaryCharactersTest.java 25 * http://java.sun.com/developer/technicalArticles/Intl/Supplementary/
43 * Supplementary Characters are dumped as binary
46 String supplementary = "\ud83d\ude48"; local
48 String output = yaml.dump(supplementary);
52 assertEquals(supplementary, binString);
58 fail("Are Supplementary Characters printable ?");
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
BMPSet.java 24 * Supplementary characters: Binary search over
25 * the supplementary part of the parent set's inversion list.
59 * always looked up in the bit tables. The last pair of indexes is for finding supplementary code points.
65 * supplementary code points. The list is terminated with list[listLength-1]=0x110000.
81 * indexes is for finding supplementary code points.
119 // surrogate or supplementary code point
176 int supplementary = Character.toCodePoint(c, c2); local
177 if (!containsSlow(supplementary, list4kStarts[0x10], list4kStarts[0x11])) {
215 int supplementary = Character.toCodePoint(c, c2); local
216 if (containsSlow(supplementary, list4kStarts[0x10], list4kStarts[0x11]))
272 int supplementary = Character.toCodePoint(c2, c); local
312 int supplementary = Character.toCodePoint(c2, c); local
    [all...]
UnicodeSetStringSpan.java 981 int supplementary = Character.toCodePoint(c, c2); local
993 int supplementary = Character.toCodePoint(c2, c); local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
BMPSet.java 23 * Supplementary characters: Binary search over
24 * the supplementary part of the parent set's inversion list.
57 * always looked up in the bit tables. The last pair of indexes is for finding supplementary code points.
63 * supplementary code points. The list is terminated with list[listLength-1]=0x110000.
79 * indexes is for finding supplementary code points.
117 // surrogate or supplementary code point
174 int supplementary = Character.toCodePoint(c, c2); local
175 if (!containsSlow(supplementary, list4kStarts[0x10], list4kStarts[0x11])) {
213 int supplementary = Character.toCodePoint(c, c2); local
214 if (containsSlow(supplementary, list4kStarts[0x10], list4kStarts[0x11]))
270 int supplementary = Character.toCodePoint(c2, c); local
310 int supplementary = Character.toCodePoint(c2, c); local
    [all...]
UnicodeSetStringSpan.java 977 int supplementary = Character.toCodePoint(c, c2); local
989 int supplementary = Character.toCodePoint(c2, c); local
    [all...]
  /external/icu/icu4c/source/common/
utext.cpp 147 // and the preceding character is not supplementary.
198 // Normal, non-supplementary case.
203 // Possible supplementary char.
278 // Normal case, not supplementary.
300 UChar32 supplementary = U16_GET_SUPPLEMENTARY(c, trail); local
302 return supplementary;
318 // Normal case, not supplementary.
339 UChar32 supplementary = U16_GET_SUPPLEMENTARY(lead, c); local
341 return supplementary;
414 // Possible supplementary. Many edge cases
    [all...]
  /external/icu/icu4c/source/test/cintltst/
citertst.c 784 UChar supplementary[2]; local
857 U16_APPEND(supplementary, stringOffset, 2, unassigned, isError);
859 ucol_setText(iter, supplementary, 2, &status);
    [all...]
  /external/cldr/tools/java/libs/
icu4j.jar 

Completed in 158 milliseconds