/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/libchrome/base/third_party/icu/ |
icu_utf.h | 294 * Get a supplementary code point value (U+10000..U+10ffff) 301 * @return supplementary code point (U+10000..U+10ffff) 310 * supplementary code point (0x10000..0x10ffff). 311 * @param supplementary 32-bit code point (U+10000..U+10ffff) 312 * @return lead surrogate (U+d800..U+dbff) for supplementary 315 #define CBU16_LEAD(supplementary) \ 316 (base_icu::UChar)(((supplementary)>>10)+0xd7c0) 320 * supplementary code point (0x10000..0x10ffff). 321 * @param supplementary 32-bit code point (U+10000..U+10ffff) 322 * @return trail surrogate (U+dc00..U+dfff) for supplementary [all...] |
/external/libweave/third_party/chromium/base/third_party/icu/ |
icu_utf.h | 287 * Get a supplementary code point value (U+10000..U+10ffff) 294 * @return supplementary code point (U+10000..U+10ffff) 303 * supplementary code point (0x10000..0x10ffff). 304 * @param supplementary 32-bit code point (U+10000..U+10ffff) 305 * @return lead surrogate (U+d800..U+dbff) for supplementary 308 #define CBU16_LEAD(supplementary) \ 309 (base_icu::UChar)(((supplementary)>>10)+0xd7c0) 313 * supplementary code point (0x10000..0x10ffff). 314 * @param supplementary 32-bit code point (U+10000..U+10ffff) 315 * @return trail surrogate (U+dc00..U+dfff) for supplementary [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
BMPSet.java | 22 * Supplementary characters: Call contains() on the parent set. 58 * always looked up in the bit tables. The last pair of indexes is for finding supplementary code points. 64 * supplementary code points. The list is terminated with list[listLength-1]=0x110000. 80 * indexes is for finding supplementary code points. 118 // surrogate or supplementary code point 175 int supplementary = Character.toCodePoint(c, c2); local 176 if (!containsSlow(supplementary, list4kStarts[0x10], list4kStarts[0x11])) { 214 int supplementary = Character.toCodePoint(c, c2); local 215 if (containsSlow(supplementary, list4kStarts[0x10], list4kStarts[0x11])) { 271 int supplementary = Character.toCodePoint(c2, c) local 311 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/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
BMPSet.java | 21 * Supplementary characters: Call contains() on the parent set. 56 * always looked up in the bit tables. The last pair of indexes is for finding supplementary code points. 62 * supplementary code points. The list is terminated with list[listLength-1]=0x110000. 78 * indexes is for finding supplementary code points. 116 // surrogate or supplementary code point 173 int supplementary = Character.toCodePoint(c, c2); local 174 if (!containsSlow(supplementary, list4kStarts[0x10], list4kStarts[0x11])) { 212 int supplementary = Character.toCodePoint(c, c2); local 213 if (containsSlow(supplementary, list4kStarts[0x10], list4kStarts[0x11])) { 269 int supplementary = Character.toCodePoint(c2, c) local 309 int supplementary = Character.toCodePoint(c2, c); local [all...] |
UnicodeSetStringSpan.java | 973 int supplementary = Character.toCodePoint(c, c2); local 985 int supplementary = Character.toCodePoint(c2, c); local [all...] |
/external/icu/icu4c/source/common/unicode/ |
utf16.h | 99 * Get a supplementary code point value (U+10000..U+10ffff) 106 * @return supplementary code point (U+10000..U+10ffff) 115 * supplementary code point (0x10000..0x10ffff). 116 * @param supplementary 32-bit code point (U+10000..U+10ffff) 117 * @return lead surrogate (U+d800..U+dbff) for supplementary 120 #define U16_LEAD(supplementary) (UChar)(((supplementary)>>10)+0xd7c0) 124 * supplementary code point (0x10000..0x10ffff). 125 * @param supplementary 32-bit code point (U+10000..U+10ffff) 126 * @return trail surrogate (U+dc00..U+dfff) for supplementary [all...] |
utf_old.h | 517 #define UTF_FIRST_SURROGATE(supplementary) (UChar)(((supplementary)>>10)+0xd7c0) 520 #define UTF_SECOND_SURROGATE(supplementary) (UChar)(((supplementary)&0x3ff)|0xdc00) 523 #define UTF16_LEAD(supplementary) UTF_FIRST_SURROGATE(supplementary) 526 #define UTF16_TRAIL(supplementary) UTF_SECOND_SURROGATE(supplementary) [all...] |
/external/icu/icu4c/source/test/cintltst/ |
citertst.c | 781 UChar supplementary[2]; local 854 U16_APPEND(supplementary, stringOffset, 2, unassigned, isError); 856 ucol_setText(iter, supplementary, 2, &status); [all...] |
/external/v8/test/cctest/ |
log-eq-of-logging-and-traversal.js | 28 // This is a supplementary file for test-log/EquivalenceOfLoggingAndTraversal.
|
/external/icu/icu4c/source/common/ |
utext.cpp | 145 // and the preceding character is not supplementary. 196 // Normal, non-supplementary case. 201 // Possible supplementary char. 276 // Normal case, not supplementary. 298 UChar32 supplementary = U16_GET_SUPPLEMENTARY(c, trail); local 300 return supplementary; 316 // Normal case, not supplementary. 337 UChar32 supplementary = U16_GET_SUPPLEMENTARY(lead, c); local 339 return supplementary; 412 // Possible supplementary. Many edge cases [all...] |
/prebuilts/misc/common/icu4j/ |
icu4j.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/net/sourceforge/saxon/saxon/9.1.0.8/ |
saxon-9.1.0.8.jar | |