HomeSort by: relevance | last modified time | path
    Searched defs:UTF8 (Results 1 - 7 of 7) sorted by relevancy

  /src/lib/libc/citrus/modules/
citrus_utf8.h 33 _CITRUS_CTYPE_GETOPS_FUNC(UTF8);
34 _CITRUS_STDENC_GETOPS_FUNC(UTF8);
citrus_utf8.c 434 _CITRUS_CTYPE_DECLS(UTF8);
435 _CITRUS_CTYPE_DEF_OPS(UTF8);
443 _CITRUS_STDENC_DECLS(UTF8);
444 _CITRUS_STDENC_DEF_OPS(UTF8);
  /src/external/apache2/llvm/dist/llvm/tools/dsymutil/
CFBundle.cpp 45 const char *UTF8(std::string &Str) const {
46 return CFString::UTF8(get(), Str);
55 static const char *UTF8(CFStringRef CFStr, std::string &Str);
64 const char *CFString::UTF8(CFStringRef CFStr, std::string &Str) {
155 << "a " << TypeIDCFStr.UTF8(TypeIDStr)
161 CFString::UTF8(BundleID, BundleInfo.IDStr);
166 CFString::UTF8((CFStringRef)TypeRef, BundleInfo.VersionStr);
174 CFString::UTF8((CFStringRef)TypeRef, BundleInfo.ShortVersionStr);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
ConvertUTF.h 111 typedef unsigned char UTF8; /* typically 8 bits */
139 const UTF8** sourceStart, const UTF8* sourceEnd,
143 * Convert a partial UTF8 sequence to UTF32. If the sequence ends in an
147 const UTF8** sourceStart, const UTF8* sourceEnd,
151 * Convert a partial UTF8 sequence to UTF32. If the sequence ends in an
155 const UTF8** sourceStart, const UTF8* sourceEnd,
160 UTF8** targetStart, UTF8* targetEnd, ConversionFlags flags)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Lex/
LiteralSupport.cpp 378 /// convert the UTF32 to UTF8 or UTF16. This is a subroutine of
432 // Now that we've parsed/checked the UCN, we convert from UTF32->UTF8.
436 typedef uint8_t UTF8;
451 // Once the bits are split out into bytes of UTF8, this is a mask OR-ed
453 static const UTF8 firstByteMark[5] = {
460 *--ResultBuf = (UTF8)((UcnVal | byteMark) & byteMask); UcnVal >>= 6;
463 *--ResultBuf = (UTF8)((UcnVal | byteMark) & byteMask); UcnVal >>= 6;
466 *--ResultBuf = (UTF8)((UcnVal | byteMark) & byteMask); UcnVal >>= 6;
469 *--ResultBuf = (UTF8) (UcnVal | firstByteMark[bytesToWrite]);
1336 llvm::ConvertUTF8toUTF32(reinterpret_cast<llvm::UTF8 const **>(&start)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Object/
WindowsResource.cpp 190 std::string UTF8;
191 if (!convertUTF16LEToUTF8String(Entry.getTypeString(), UTF8))
192 UTF8 = "(failed conversion from UTF16)";
193 OS << '\"' << UTF8 << '\"';
199 std::string UTF8;
200 if (!convertUTF16LEToUTF8String(Entry.getNameString(), UTF8))
201 UTF8 = "(failed conversion from UTF16)";
202 OS << '\"' << UTF8 << '\"';
216 std::string UTF8;
217 if (!convertUTF16LEToUTF8String(S.String, UTF8))
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Expr.h 1579 UTF8,
1779 enum StringKind { Ascii, Wide, UTF8, UTF16, UTF32 };
1878 bool isUTF8() const { return getKind() == UTF8; }

Completed in 143 milliseconds