Home | History | Annotate | Download | only in Support

Lines Matching refs:UTF32

33     Conversions between UTF32, UTF-16, and UTF-8.  Header file.
109 typedef unsigned int UTF32; /* at least 32 bits */
115 #define UNI_REPLACEMENT_CHAR (UTF32)0x0000FFFD
116 #define UNI_MAX_BMP (UTF32)0x0000FFFF
117 #define UNI_MAX_UTF16 (UTF32)0x0010FFFF
118 #define UNI_MAX_UTF32 (UTF32)0x7FFFFFFF
119 #define UNI_MAX_LEGAL_UTF32 (UTF32)0x0010FFFF
143 * Convert a partial UTF8 sequence to UTF32. If the sequence ends in an
148 UTF32** targetStart, UTF32* targetEnd, ConversionFlags flags);
151 * Convert a partial UTF8 sequence to UTF32. If the sequence ends in an
156 UTF32** targetStart, UTF32* targetEnd, ConversionFlags flags);
163 const UTF32** sourceStart, const UTF32* sourceEnd,
168 UTF32** targetStart, UTF32* targetEnd, ConversionFlags flags);
171 const UTF32** sourceStart, const UTF32* sourceEnd,
188 * Convert an UTF8 StringRef to UTF8, UTF16, or UTF32 depending on
231 * Convert the first UTF8 sequence in the given source buffer to a UTF32
247 UTF32 *target,