OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ToUtf8
(Results
1 - 4
of
4
) sorted by null
/external/chromium/third_party/libjingle/source/talk/base/
win32.h
70
inline std::string
ToUtf8
(const wchar_t* wide, size_t len) {
77
inline std::string
ToUtf8
(const std::wstring& wstr) {
78
return
ToUtf8
(wstr.data(), wstr.length());
macutils.cc
40
bool
ToUtf8
(const CFStringRef str16, std::string* str8) {
/external/chromium_org/third_party/libjingle/source/talk/base/
win32.h
80
inline std::string
ToUtf8
(const wchar_t* wide, size_t len) {
89
inline std::string
ToUtf8
(const wchar_t* wide) {
90
return
ToUtf8
(wide, wcslen(wide));
93
inline std::string
ToUtf8
(const std::wstring& wstr) {
94
return
ToUtf8
(wstr.data(), wstr.length());
macutils.cc
40
bool
ToUtf8
(const CFStringRef str16, std::string* str8) {
Completed in 312 milliseconds