HomeSort by relevance Sort by last modified time
    Searched refs:UTF32 (Results 1 - 2 of 2) sorted by null

  /external/clang/include/clang/Basic/
ConvertUTF.h 33 Conversions between UTF32, UTF-16, and UTF-8. Header file.
101 typedef unsigned long UTF32; /* at least 32 bits */
107 #define UNI_REPLACEMENT_CHAR (UTF32)0x0000FFFD
108 #define UNI_MAX_BMP (UTF32)0x0000FFFF
109 #define UNI_MAX_UTF16 (UTF32)0x0010FFFF
110 #define UNI_MAX_UTF32 (UTF32)0x7FFFFFFF
111 #define UNI_MAX_LEGAL_UTF32 (UTF32)0x0010FFFF
141 UTF32** targetStart, UTF32* targetEnd, ConversionFlags flags);
144 const UTF32** sourceStart, const UTF32* sourceEnd
    [all...]
  /external/clang/lib/Basic/
ConvertUTF.c 33 Conversions between UTF32, UTF-16, and UTF-8. Source code file.
57 static const UTF32 halfBase = 0x0010000UL;
58 static const UTF32 halfMask = 0x3FFUL;
60 #define UNI_SUR_HIGH_START (UTF32)0xD800
61 #define UNI_SUR_HIGH_END (UTF32)0xDBFF
62 #define UNI_SUR_LOW_START (UTF32)0xDC00
63 #define UNI_SUR_LOW_END (UTF32)0xDFFF
92 static const UTF32 offsetsFromUTF8[6] = { 0x00000000UL, 0x00003080UL, 0x000E2080UL,
119 const UTF32** sourceStart, const UTF32* sourceEnd,
    [all...]

Completed in 2606 milliseconds