Home
last modified time | relevance | path

Searched refs:wideString (Results 1 – 4 of 4) sorted by relevance

/external/webkit/Source/JavaScriptCore/wtf/wx/
DStringWx.cpp59 wxWCharBuffer wideString(wxstr.wc_str()); in String()
61 const wxChar *wideString = wxstr.wc_str(); in String()
67 const size_t utf16bufLen = conv.FromWChar(0, 0, wideString, wideLength); in String()
71 size_t len = conv.FromWChar(utf16buf.data(), utf16bufLen, wideString, wideLength) / 2; in String()
/external/webkit/Source/WebKit/android/nav/
DCacheBuilder.h269 void wideString(const String& str);
285 void wideString(const UChar* chars, int length, bool hex);
DCacheBuilder.cpp130 wideString(value.characters(), value.length(), false); in attr()
425 wideString(element->getIdAttribute()); in groups()
429 wideString(node->textContent().characters(), 100, false); in groups()
435 wideString(node->textContent().characters(), node->textContent().length(), true); in groups()
440 wideString(anchor->href()); in groups()
443 wideString(image->src()); in groups()
598wideString(node->textContent().characters() + textBox->start(), textBox->len(), true); in groups()
640 wideString(local.characters(), local.length(), false); in localName()
770 void CacheBuilder::Debug::wideString(const UChar* chars, int length, bool hex) { in wideString() function in android::CacheBuilder::Debug
780 void CacheBuilder::Debug::wideString(const String& str) { in wideString() function in android::CacheBuilder::Debug
[all …]
/external/webkit/Tools/DumpRenderTree/win/
DDumpRenderTree.cpp182 static string toUTF8(const wchar_t* wideString, size_t length) in toUTF8() argument
184 int result = WideCharToMultiByte(CP_UTF8, 0, wideString, length + 1, 0, 0, 0, 0); in toUTF8()
186 … result = WideCharToMultiByte(CP_UTF8, 0, wideString, length + 1, utf8Vector.data(), result, 0, 0); in toUTF8()
198 string toUTF8(const wstring& wideString) in toUTF8() argument
200 return toUTF8(wideString.c_str(), wideString.length()); in toUTF8()