Home | History | Annotate | Download | only in fxcrt

Lines Matching defs:wstr

821 CFX_WideString CFX_WideString::FromUTF16LE(const unsigned short* wstr,
823 if (!wstr || 0 == wlen) {
830 buf[i] = wstr[i];
992 const CFX_WideStringC& wstr) {
994 int src_len = wstr.GetLength();
995 int dest_len = FXSYS_WideCharToMultiByte(codepage, 0, wstr.c_str(), src_len,
1000 FXSYS_WideCharToMultiByte(codepage, 0, wstr.c_str(), src_len, dest_buf,
1014 CFX_WideString wstr;
1016 FX_WCHAR* dest_buf = wstr.GetBuffer(dest_len);
1019 wstr.ReleaseBuffer(dest_len);
1021 return wstr;