Home
last modified time | relevance | path

Searched refs:toUTF8 (Results 1 – 17 of 17) sorted by relevance

/external/webkit/Tools/DumpRenderTree/win/
DDumpRenderTreeWin.h53 std::string toUTF8(BSTR);
54 std::string toUTF8(const std::wstring&);
DFrameLoadDelegate.cpp63 if (FAILED(webFrame->name(&frameNameBSTR)) || toUTF8(frameNameBSTR).empty()) in descriptionSuitableForTestResult()
67 frameName += " \"" + toUTF8(frameNameBSTR) + "\""; in descriptionSuitableForTestResult()
DDumpRenderTree.cpp182 static string toUTF8(const wchar_t* wideString, size_t length) in toUTF8() function
193 string toUTF8(BSTR bstr) in toUTF8() function
195 return toUTF8(bstr, SysStringLen(bstr)); in toUTF8()
198 string toUTF8(const wstring& wideString) in toUTF8() function
200 return toUTF8(wideString.c_str(), wideString.length()); in toUTF8()
DUIDelegate.cpp492 printf("CONSOLE MESSAGE: line %d: %s\n", lineNumber, toUTF8(newMessage).c_str()); in webViewAddMessageToConsole()
632 printf("UI DELEGATE STATUS CALLBACK: setStatusText:%s\n", text ? toUTF8(text).c_str() : ""); in setStatusText()
/external/antlr/antlr-3.4/runtime/C/src/
Dantlr3debughandlers.c457 return delboy->tokenString->toUTF8(delboy->tokenString); in serializeToken()
541 return delboy->tokenString->toUTF8(delboy->tokenString); in serializeNode()
885 transmit (delboy, (const char *)(delboy->tokenString->toUTF8(delboy->tokenString)->chars)); in consumeNode()
904 transmit (delboy, (const char *)(delboy->tokenString->toUTF8(delboy->tokenString)->chars)); in LTT()
955 transmit(delboy, (const char *)(delboy->tokenString->toUTF8(delboy->tokenString)->chars)); in createNode()
998 transmit(delboy, (const char *)(delboy->tokenString->toUTF8(delboy->tokenString)->chars)); in errorNode()
Dantlr3string.c284 string->toUTF8 = toUTF8_8; in stringInit8()
321 string->toUTF8 = toUTF8_UTF16; in stringInitUTF16()
/external/antlr/antlr-3.4/runtime/C/include/
Dantlr3string.h201 (*toUTF8) (struct ANTLR3_STRING_struct * string); member
/external/icu4c/common/
Ducnv_cnv.h252 UConverterConvert toUTF8; member
Duts46.cpp78 info, errorCode).toUTF8(dest); in labelToASCII_UTF8()
88 info, errorCode).toUTF8(dest); in labelToUnicodeUTF8()
98 info, errorCode).toUTF8(dest); in nameToASCII_UTF8()
108 info, errorCode).toUTF8(dest); in nameToUnicodeUTF8()
517 destString.toUTF8(dest); // calls dest.Flush() in processUTF8()
Dunistr_cnv.cpp185 return toUTF8(start, length, target, capacity); in extract()
Dunistr.cpp843 UnicodeString::toUTF8(int32_t start, int32_t len, in toUTF8() function in UnicodeString
865 return toUTF8(start, len, target, dstSize <= 0x7fffffff ? (int32_t)dstSize : 0x7fffffff); in extract()
885 UnicodeString::toUTF8(ByteSink &sink) const { in toUTF8() function in UnicodeString
Ducnv.c2148 sourceCnv->sharedData->impl->toUTF8!=NULL in ucnv_convertEx()
2150 convert=sourceCnv->sharedData->impl->toUTF8; in ucnv_convertEx()
/external/antlr/antlr-3.4/runtime/C/doxygen/
Dusing.dox45 …ovides some convenience methods such as #pANTLR3_STRING->substring() and #pANTLR3_STRING->toUTF8().
/external/icu4c/common/unicode/
Dunistr.h1666 void toUTF8(ByteSink &sink) const;
1685 toUTF8(sbs); in toUTF8String()
3272 toUTF8(int32_t start, int32_t len,
/external/icu4c/test/intltest/
Dustrtest.cpp1900 us.toUTF8(sink); in TestUTF8()
/external/webkit/Tools/
DChangeLog-2011-02-1631157 (toUTF8): Extracted the code into an overload that takes a wide string
31160 * DumpRenderTree/win/DumpRenderTreeWin.h: Declare the new toUTF8
31164 (UIDelegate::webViewAddMessageToConsole): Use toUTF8 to convert to
DChangeLog-2010-05-241240 (toUTF8): Moved this here from FrameLoadDelegate. Renamed from
1243 * DumpRenderTree/win/DumpRenderTreeWin.h: Added declaration of toUTF8.