OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:UTF8ToWide
(Results
1 - 2
of
2
) sorted by null
/external/chromium/base/
utf_string_conversions.cc
61
bool
UTF8ToWide
(const char* src, size_t src_len, std::wstring* output) {
66
std::wstring
UTF8ToWide
(const base::StringPiece& utf8) {
68
UTF8ToWide
(utf8.data(), utf8.length(), &ret);
161
return
UTF8ToWide
(src, src_len, output);
165
return
UTF8ToWide
(utf8);
/external/chromium_org/base/strings/
utf_string_conversions.cc
58
bool
UTF8ToWide
(const char* src, size_t src_len, std::wstring* output) {
63
std::wstring
UTF8ToWide
(const StringPiece& utf8) {
65
UTF8ToWide
(utf8.data(), utf8.length(), &ret);
158
return
UTF8ToWide
(src, src_len, output);
162
return
UTF8ToWide
(utf8);
Completed in 86 milliseconds