Home | History | Annotate | Download | only in icu

Lines Matching full:supplementary

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
325 #define CBU16_TRAIL(supplementary) \
326 (base_icu::UChar)(((supplementary)&0x3ff)|0xdc00)
351 * for a supplementary code point, in which case the macro will read