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

  /external/clang/include/clang/Basic/
ConvertUTF.h 102 typedef unsigned short UTF16; /* at least 16 bits */
132 UTF16** targetStart, UTF16* targetEnd, ConversionFlags flags);
140 const UTF16** sourceStart, const UTF16* sourceEnd,
148 const UTF16** sourceStart, const UTF16* sourceEnd,
153 UTF16** targetStart, UTF16* targetEnd, ConversionFlags flags);
  /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/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 120 UTF16** targetStart, UTF16* targetEnd, ConversionFlags flags) {
123 UTF16* target = *targetStart;
141 *target++ = (UTF16)ch; /* normal case */
156 *target++ = (UTF16)((ch >> halfShift) + UNI_SUR_HIGH_START);
157 *target++ = (UTF16)((ch & halfMask) + UNI_SUR_LOW_START);
168 const UTF16** sourceStart, const UTF16* sourceEnd,
171 const UTF16* source = *sourceStart;
175 const UTF16* oldSource = source; /* In case we have to back up because of target overflow. *
    [all...]
  /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 254 /// convert the UTF32 to UTF8 or UTF16. This is a subroutine of
290 UTF16 *ResultPtr = reinterpret_cast<UTF16*>(ResultBuf);
298 // 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/
StmtDumper.cpp 454 case StringLiteral::UTF16: OS << 'u'; break;
StmtPrinter.cpp 653 case CharacterLiteral::UTF16: OS << 'u'; break;
741 case StringLiteral::UTF16: OS << 'u'; break;
755 if (Str->getKind() == StringLiteral::UTF16 && I != N - 1 &&
    [all...]
Expr.cpp 591 case UTF16:
    [all...]
  /external/clang/lib/CodeGen/
CodeGenModule.cpp     [all...]
  /external/clang/include/clang/AST/
Expr.h     [all...]
  /external/clang/lib/Sema/
SemaExprObjC.cpp 257 case CharacterLiteral::UTF16:
498 case CharacterLiteral::UTF16:
    [all...]
SemaChecking.cpp     [all...]
SemaExpr.cpp     [all...]
SemaExprCXX.cpp     [all...]
SemaInit.cpp 59 case StringLiteral::UTF16:
    [all...]
SemaTemplate.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 

Completed in 740 milliseconds