Searched refs:UTF16 (Results 1 - 22 of 22) sorted by relevance

/external/clang/include/clang/Basic/
H A DConvertUTF.h102 typedef unsigned short UTF16; /* at least 16 bits */ typedef
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/
H A Dantlr3convertutf.h97 // typedef unsigned short UTF16; /* at least 16 bits */
107 typedef ANTLR3_UINT16 UTF16; /* at least 16 bits */ typedef
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* targetEn
[all...]
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3convertutf.c54 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* oldSourc
[all...]
H A Dantlr3string.c125 // 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 character
[all...]
H A Dantlr3inputstream.c70 // 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 characte
[all...]
/external/clang/lib/Basic/
H A DConvertUTF.c120 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* oldSourc
[all...]
/external/icu4c/common/
H A Dunisetspan.h40 UTF16 = 8, enumerator in enum:UnicodeSetStringSpan::__anon5291
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,
H A Dunisetspan.cpp237 if((which&UTF16) && length16>maxLength16) {
312 if(which&UTF16) {
/external/clang/lib/Lex/
H A DLiteralSupport.cpp254 /// convert the UTF32 to UTF8 or UTF16. This is a subroutine of
290 UTF16 *ResultPtr = reinterpret_cast<UTF16*>(ResultBuf);
298 // Convert to UTF16.
1248 UTF16 *ResultWidePtr = reinterpret_cast<UTF16*>(ResultPtr);
1268 UTF16 *ResultWidePtr = reinterpret_cast<UTF16*>(ResultBuf.data());
1316 UTF16 *targetStart = reinterpret_cast<UTF16*>(ResultPt
[all...]
/external/webkit/Source/WebCore/loader/
H A DTextResourceDecoder.cpp75 enum Type { ASCII, JIS, EUC, SJIS, UTF16, UTF8 }; enumerator in enum:WebCore::KanjiCode::Type
602 case KanjiCode::UTF16:
/external/clang/lib/AST/
H A DStmtDumper.cpp454 case StringLiteral::UTF16: OS << 'u'; break;
H A DStmtPrinter.cpp653 case CharacterLiteral::UTF16: OS << 'u'; break;
741 case StringLiteral::UTF16: OS << 'u'; break;
755 if (Str->getKind() == StringLiteral::UTF16 && I != N - 1 &&
H A DExpr.cpp591 case UTF16:
/external/clang/lib/CodeGen/
H A DCodeGenModule.cpp1909 SmallVector<UTF16, 128> ToBuf(NumBytes + 1); // +1 for ending nulls.
1911 UTF16 *ToPtr = &ToBuf[0];
2016 // Cast the UTF16 string to the correct type.
/external/clang/include/clang/AST/
H A DExpr.h1186 UTF16, enumerator in enum:clang::CharacterLiteral::CharacterKind
1336 UTF16, enumerator in enum:clang::StringLiteral::StringKind
1422 bool isUTF16() const { return Kind == UTF16; }
/external/clang/lib/Sema/
H A DSemaExprObjC.cpp257 case CharacterLiteral::UTF16:
498 case CharacterLiteral::UTF16:
H A DSemaChecking.cpp1150 SmallVector<UTF16, 128> ToBuf(NumBytes);
1152 UTF16 *ToPtr = &ToBuf[0];
H A DSemaExpr.cpp1224 Kind = StringLiteral::UTF16;
2439 Kind = CharacterLiteral::UTF16;
H A DSemaExprCXX.cpp2277 case StringLiteral::UTF16:
H A DSemaInit.cpp59 case StringLiteral::UTF16:
H A DSemaTemplate.cpp4489 Kind = CharacterLiteral::UTF16;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 7367 milliseconds