HomeSort by relevance Sort by last modified time
    Searched refs:supplementary (Results 1 - 25 of 25) 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/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/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/unicode/
utf16.h 101 * Get a supplementary code point value (U+10000..U+10ffff)
108 * @return supplementary code point (U+10000..U+10ffff)
117 * supplementary code point (0x10000..0x10ffff).
118 * @param supplementary 32-bit code point (U+10000..U+10ffff)
119 * @return lead surrogate (U+d800..U+dbff) for supplementary
122 #define U16_LEAD(supplementary) (UChar)(((supplementary)>>10)+0xd7c0)
126 * supplementary code point (0x10000..0x10ffff).
127 * @param supplementary 32-bit code point (U+10000..U+10ffff)
128 * @return trail surrogate (U+dc00..U+dfff) for supplementary
    [all...]
utf_old.h 553 #define UTF_FIRST_SURROGATE(supplementary) (UChar)(((supplementary)>>10)+0xd7c0)
556 #define UTF_SECOND_SURROGATE(supplementary) (UChar)(((supplementary)&0x3ff)|0xdc00)
559 #define UTF16_LEAD(supplementary) UTF_FIRST_SURROGATE(supplementary)
562 #define UTF16_TRAIL(supplementary) UTF_SECOND_SURROGATE(supplementary)
    [all...]
  /external/v8/src/inspector/
string-16.cc 171 * Is this code point a supplementary code point (U+10000..U+10ffff)?
188 * supplementary code point (0x10000..0x10ffff).
189 * @param supplementary 32-bit code point (U+10000..U+10ffff)
190 * @return lead surrogate (U+d800..U+dbff) for supplementary
193 #define U16_LEAD(supplementary) (UChar)(((supplementary) >> 10) + 0xd7c0)
197 * supplementary code point (0x10000..0x10ffff).
198 * @param supplementary 32-bit code point (U+10000..U+10ffff)
199 * @return trail surrogate (U+dc00..U+dfff) for supplementary
202 #define U16_TRAIL(supplementary) (UChar)(((supplementary)&0x3ff) | 0xdc00
    [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/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...]
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/
objdump_test.go 190 // Most of these come from supplementary manuals of one form or another.
  /prebuilts/go/darwin-x86/src/syscall/
exec_unix.go 117 Groups []uint32 // Supplementary group IDs.
118 NoSetGroups bool // If true, don't set supplementary groups
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/
objdump_test.go 190 // Most of these come from supplementary manuals of one form or another.
  /prebuilts/go/linux-x86/src/syscall/
exec_unix.go 117 Groups []uint32 // Supplementary group IDs.
118 NoSetGroups bool // If true, don't set supplementary groups
  /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 
  /external/annotation-tools/asmx/test/lib/
saxon7.jar 
  /prebuilts/tools/common/m2/repository/net/sf/saxon/Saxon-HE/9.8.0-5/
Saxon-HE-9.8.0-5.jar 
  /prebuilts/tools/common/m2/repository/net/sourceforge/saxon/saxon/9.1.0.8/
saxon-9.1.0.8.jar 

Completed in 566 milliseconds