Home | History | Annotate | Download | only in unicode

Lines Matching refs:supplementary

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
129 #define U16_TRAIL(supplementary) (UChar)(((supplementary)&0x3ff)|0xdc00)
153 * for a supplementary code point, in which case the macro will read
181 * for a supplementary code point, in which case the macro will read
223 * for a supplementary code point, in which case the macro will read
251 * for a supplementary code point, in which case the macro will read
452 * for a supplementary code point, then the macro will read
479 * for a supplementary code point, then the macro will read