OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:wideString
(Results
1 - 4
of
4
) sorted by null
/external/webkit/Source/JavaScriptCore/wtf/wx/
StringWx.cpp
59
wxWCharBuffer
wideString
(wxstr.wc_str());
61
const wxChar *
wideString
= wxstr.wc_str();
67
const size_t utf16bufLen = conv.FromWChar(0, 0,
wideString
, wideLength);
71
size_t len = conv.FromWChar(utf16buf.data(), utf16bufLen,
wideString
, wideLength) / 2;
/external/webkit/Source/WebKit/android/nav/
CacheBuilder.h
269
void
wideString
(const String& str);
285
void
wideString
(const UChar* chars, int length, bool hex);
CacheBuilder.cpp
130
wideString
(value.characters(), value.length(), false);
425
wideString
(element->getIdAttribute());
429
wideString
(node->textContent().characters(), 100, false);
435
wideString
(node->textContent().characters(), node->textContent().length(), true);
440
wideString
(anchor->href());
443
wideString
(image->src());
598
wideString
(node->textContent().characters() + textBox->start(), textBox->len(), true);
640
wideString
(local.characters(), local.length(), false);
770
void CacheBuilder::Debug::
wideString
(const UChar* chars, int length, bool hex) {
780
void CacheBuilder::Debug::
wideString
(const String& str)
[
all
...]
/external/webkit/Tools/DumpRenderTree/win/
DumpRenderTree.cpp
182
static string toUTF8(const wchar_t*
wideString
, size_t length)
184
int result = WideCharToMultiByte(CP_UTF8, 0,
wideString
, length + 1, 0, 0, 0, 0);
186
result = WideCharToMultiByte(CP_UTF8, 0,
wideString
, length + 1, utf8Vector.data(), result, 0, 0);
198
string toUTF8(const wstring&
wideString
)
200
return toUTF8(
wideString
.c_str(),
wideString
.length());
[
all
...]
Completed in 383 milliseconds