HomeSort by relevance Sort by last modified time
    Searched refs:UTF32 (Results 1 - 16 of 16) 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/clang/include/clang/Basic/
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
138 UTF32** targetStart, UTF32* targetEnd, ConversionFlags flags);
147 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,
118 const UTF32** sourceStart, const UTF32* sourceEnd,
    [all...]
ConvertUTFWrapper.cpp 46 UTF32 *targetStart = reinterpret_cast<UTF32*>(ResultPtr);
62 const UTF32 *SourceStart = &Source;
63 const UTF32 *SourceEnd = SourceStart + 1;
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3convertutf.c 25 Conversions between UTF32, UTF-16, and UTF-8. Source code file.
53 const UTF32** sourceStart, const UTF32* sourceEnd,
56 const UTF32* source = *sourceStart;
59 UTF32 ch;
103 UTF32** targetStart, UTF32* targetEnd, ConversionFlags flags) {
106 UTF32* target = *targetStart;
107 UTF32 ch, ch2;
111 /* If we have a surrogate pair, convert to UTF32 first. *
    [all...]
antlr3inputstream.c 88 // UTF32 (also covers UCS2)
150 input->istream->_LA = antlr38BitLA; // Return the UTF32 character at offset n (1 based)
347 * \return Next input character in internal ANTLR3 encoding (UTF32)
374 * \return Next input character in internal ANTLR3 encoding (UTF32)
399 * \return Next input character in internal ANTLR3 encoding (UTF32)
680 * - The supplied newLineChar is in UTF32 encoding (which means ASCII and latin1 etc
734 input->istream->_LA = antlr3UTF16LA; // Return the UTF32 character at offset n (1 based)
741 input->istream->_LA = antlr3UTF16LALE; // Return the UTF32 character at offset n (1 based)
756 input->istream->_LA = antlr3UTF16LA; // Return the UTF32 character at offset n (1 based)
763 input->istream->_LA = antlr3UTF16LABE; // Return the UTF32 character at offset n (1 based)
    [all...]
  /external/clang/lib/Lex/
LiteralSupport.cpp 212 /// return the UTF32.
248 UcnVal > 0x10FFFF) { // maximum legal UTF32 value
317 /// convert the UTF32 to UTF8 or UTF16. This is a subroutine of
326 typedef uint32_t UTF32;
327 UTF32 UcnVal = 0;
344 UTF32 *ResultPtr = reinterpret_cast<UTF32*>(ResultBuf);
355 if (UcnVal <= (UTF32)0xFFFF) {
371 // Now that we've parsed/checked the UCN, we convert from UTF32->UTF8.
378 if (UcnVal < (UTF32)0x80
    [all...]
  /external/clang/lib/Frontend/
TextDiagnostic.cpp 130 UTF32 c;
131 UTF32 *cptr = &c;
    [all...]
  /external/clang/lib/AST/
StmtPrinter.cpp 666 case CharacterLiteral::UTF32: OS << 'U'; break;
    [all...]
Expr.cpp 635 case UTF32:
685 case UTF32: OS << 'U'; break;
    [all...]
  /external/clang/include/clang/AST/
Expr.h     [all...]
  /external/clang/lib/Sema/
SemaExprObjC.cpp 276 case CharacterLiteral::UTF32:
531 case CharacterLiteral::UTF32:
    [all...]
SemaExprCXX.cpp     [all...]
SemaInit.cpp 61 case StringLiteral::UTF32:
    [all...]
SemaTemplate.cpp     [all...]
SemaExpr.cpp     [all...]

Completed in 1375 milliseconds