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

  /external/antlr/antlr-3.4/runtime/C/include/
antlr3convertutf.h 25 Conversions between UTF32, UTF-16, and UTF-8. Header file.
96 // typedef unsigned long UTF32; /* at least 32 bits */
106 typedef ANTLR3_UINT32 UTF32; /* at least 32 bits */
111 #define UNI_REPLACEMENT_CHAR (UTF32)0x0000FFFD
112 #define UNI_MAX_BMP (UTF32)0x0000FFFF
113 #define UNI_MAX_UTF16 (UTF32)0x0010FFFF
114 #define UNI_MAX_UTF32 (UTF32)0x7FFFFFFF
115 #define UNI_MAX_LEGAL_UTF32 (UTF32)0x0010FFFF
117 #define UNI_SUR_HIGH_START (UTF32)0xD800
118 #define UNI_SUR_HIGH_END (UTF32)0xDBF
    [all...]
  /external/llvm/include/llvm/Support/
ConvertUTF.h 33 Conversions between UTF32, UTF-16, and UTF-8. Header file.
101 typedef unsigned int 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
140 * Convert a partial UTF8 sequence to UTF32. If the sequence ends in an
145 UTF32** targetStart, UTF32* targetEnd, ConversionFlags flags)
    [all...]
  /external/clang/lib/Lex/
LiteralSupport.cpp 258 /// return the UTF32.
294 UcnVal > 0x10FFFF) { // maximum legal UTF32 value
363 /// convert the UTF32 to UTF8 or UTF16. This is a subroutine of
372 typedef uint32_t UTF32;
373 UTF32 UcnVal = 0;
390 UTF32 *ResultPtr = reinterpret_cast<UTF32*>(ResultBuf);
401 if (UcnVal <= (UTF32)0xFFFF) {
417 // Now that we've parsed/checked the UCN, we convert from UTF32->UTF8.
424 if (UcnVal < (UTF32)0x80
    [all...]
  /external/clang/include/clang/AST/
Expr.h     [all...]

Completed in 426 milliseconds