OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ToUtf8
(Results
1 - 3
of
3
) sorted by null
/external/webrtc/webrtc/system_wrappers/include/
utf_util_win.h
37
inline std::string
ToUtf8
(const wchar_t* wide, size_t len) {
46
inline std::string
ToUtf8
(const wchar_t* wide) {
47
return
ToUtf8
(wide, wcslen(wide));
50
inline std::string
ToUtf8
(const std::wstring& wstr) {
51
return
ToUtf8
(wstr.data(), wstr.length());
/external/webrtc/webrtc/base/
macutils.cc
23
bool
ToUtf8
(const CFStringRef str16, std::string* str8) {
win32.h
61
inline std::string
ToUtf8
(const wchar_t* wide, size_t len) {
70
inline std::string
ToUtf8
(const wchar_t* wide) {
71
return
ToUtf8
(wide, wcslen(wide));
74
inline std::string
ToUtf8
(const std::wstring& wstr) {
75
return
ToUtf8
(wstr.data(), wstr.length());
Completed in 910 milliseconds