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

  /external/antlr/antlr-3.4/runtime/C/include/
antlr3convertutf.h 97 // typedef unsigned short UTF16; /* at least 16 bits */
107 typedef ANTLR3_UINT16 UTF16; /* at least 16 bits */
146 UTF16** targetStart, UTF16* targetEnd, ConversionFlags flags);
149 const UTF16** sourceStart, const UTF16* sourceEnd,
161 const UTF16** sourceStart, const UTF16* sourceEnd,
166 UTF16** targetStart, UTF16* targetEnd, ConversionFlags flags)
    [all...]
  /external/clang/include/clang/Basic/
ConvertUTF.h 102 typedef unsigned short UTF16; /* at least 16 bits */
134 UTF16** targetStart, UTF16* targetEnd, ConversionFlags flags);
142 const UTF16** sourceStart, const UTF16* sourceEnd,
151 const UTF16** sourceStart, const UTF16* sourceEnd,
156 UTF16** targetStart, UTF16* targetEnd, ConversionFlags flags);
176 * Convert an UTF8 StringRef to UTF8, UTF16, or UTF32 depending o
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3convertutf.c 54 UTF16** targetStart, UTF16* targetEnd, ConversionFlags flags) {
57 UTF16* target = *targetStart;
75 *target++ = (UTF16)ch; /* normal case */
90 *target++ = (UTF16)((ch >> halfShift) + UNI_SUR_HIGH_START);
91 *target++ = (UTF16)((ch & halfMask) + UNI_SUR_LOW_START);
102 const UTF16** sourceStart, const UTF16* sourceEnd,
105 const UTF16* source = *sourceStart;
109 const UTF16* oldSource = source; /* In case we have to back up because of target overflow. *
    [all...]
antlr3string.c 125 // UTF16 and 8Bit if I am going to support those encodings in the STRING stuff.
304 /* API for UTF16 strings */
354 // Convert a UTF16 string into a UTF8 representation using the Unicode.org
357 // UCS2 has the same encoding as UTF16 so we can use UTF16 converter.
364 UTF16 * inputEnd;
387 inputEnd = (UTF16 *) (string->chars);
394 (const UTF16**)&inputEnd,
395 ((const UTF16 *)(string->chars)) + string->len,
442 * Creates a new string with enough capacity for size UTF16 characters plus a terminator
    [all...]
antlr3inputstream.c 70 // UTF16 (also covers UCS2)
83 // UTF16 Charstream API functions
99 // UTF16 Charstream API functions
691 /// \brief Common function to setup function interface for a UTF16 or UCS2 input stream.
698 /// essentially UTF16 without any surrogates and so the standard UTF16
704 // Build a string factory for this stream. This is a UTF16 string factory which is a standard
712 input->istream->index = antlr3UTF16Index; // Calculate current index in input stream, UTF16 based
716 // We must install different UTF16 routines according to whether the input
733 input->istream->consume = antlr3UTF16Consume; // Consume the next UTF16 character in the buffe
    [all...]
  /external/clang/lib/Basic/
ConvertUTF.c 119 UTF16** targetStart, UTF16* targetEnd, ConversionFlags flags) {
122 UTF16* target = *targetStart;
140 *target++ = (UTF16)ch; /* normal case */
155 *target++ = (UTF16)((ch >> halfShift) + UNI_SUR_HIGH_START);
156 *target++ = (UTF16)((ch & halfMask) + UNI_SUR_LOW_START);
167 const UTF16** sourceStart, const UTF16* sourceEnd,
170 const UTF16* source = *sourceStart;
174 const UTF16* oldSource = source; /* In case we have to back up because of target overflow. *
    [all...]
ConvertUTFWrapper.cpp 33 UTF16 *targetStart = reinterpret_cast<UTF16*>(ResultPtr);
  /external/icu4c/common/
unisetspan.h 40 UTF16 = 8,
47 FWD_UTF16_CONTAINED = FWD | UTF16 | CONTAINED,
48 FWD_UTF16_NOT_CONTAINED = FWD | UTF16 | NOT_CONTAINED,
51 BACK_UTF16_CONTAINED = BACK | UTF16 | CONTAINED,
52 BACK_UTF16_NOT_CONTAINED= BACK | UTF16 | NOT_CONTAINED,
unisetspan.cpp 237 if((which&UTF16) && length16>maxLength16) {
312 if(which&UTF16) {
    [all...]
  /external/clang/lib/Lex/
LiteralSupport.cpp 317 /// convert the UTF32 to UTF8 or UTF16. This is a subroutine of
353 UTF16 *ResultPtr = reinterpret_cast<UTF16*>(ResultBuf);
361 // Convert to UTF16.
    [all...]
  /external/webkit/Source/WebCore/loader/
TextResourceDecoder.cpp 75 enum Type { ASCII, JIS, EUC, SJIS, UTF16, UTF8 };
602 case KanjiCode::UTF16:
  /external/clang/lib/AST/
StmtPrinter.cpp 665 case CharacterLiteral::UTF16: OS << 'u'; break;
    [all...]
Expr.cpp 632 case UTF16:
684 case UTF16: OS << 'u'; break;
698 if (getKind() == UTF16 && I != N - 1 && Char >= 0xd800 &&
    [all...]
  /external/clang/lib/CodeGen/
CodeGenModule.cpp     [all...]
  /external/clang/include/clang/AST/
Expr.h     [all...]
  /external/clang/lib/Sema/
SemaExprObjC.cpp 272 case CharacterLiteral::UTF16:
527 case CharacterLiteral::UTF16:
    [all...]
SemaChecking.cpp     [all...]
SemaExprCXX.cpp     [all...]
SemaInit.cpp 59 case StringLiteral::UTF16:
    [all...]
SemaTemplate.cpp     [all...]
SemaExpr.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 

Completed in 730 milliseconds