OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:WideToUTF8
(Results
1 - 3
of
3
) sorted by null
/external/chromium/base/
utf_string_conversions.cc
48
bool
WideToUTF8
(const wchar_t* src, size_t src_len, std::string* output) {
53
std::string
WideToUTF8
(const std::wstring& wide) {
57
WideToUTF8
(wide.data(), wide.length(), &ret);
169
return
WideToUTF8
(src, src_len, output);
173
return
WideToUTF8
(utf16);
/external/chromium_org/base/strings/
utf_string_conversions.cc
45
bool
WideToUTF8
(const wchar_t* src, size_t src_len, std::string* output) {
50
std::string
WideToUTF8
(const std::wstring& wide) {
54
WideToUTF8
(wide.data(), wide.length(), &ret);
166
return
WideToUTF8
(src, src_len, output);
170
return
WideToUTF8
(utf16);
/external/chromium_org/sandbox/win/wow_helper/
wow_helper.cc
49
std::string
WideToUTF8
(const base::string16& wide) {
Completed in 52 milliseconds