Searched refs:pwz (Results 1 - 5 of 5) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dwxchar.cpp92 size_t WXDLLEXPORT wxWC2MB(char *buf, const wchar_t *pwz, size_t n) argument
100 if (!n || !*pwz) {
106 return wcsrtombs(buf, &pwz, n, &mbstate);
108 return wxWcstombs(buf, pwz, n);
113 return wcsrtombs((char *) NULL, &pwz, 0, &mbstate);
115 return wxWcstombs((char *) NULL, pwz, 0);
1840 WXDLLEXPORT wchar_t * wxStrdupW(const wchar_t *pwz)
1842 size_t size = (wxWcslen(pwz) + 1) * sizeof(wchar_t);
1844 memcpy(ret, pwz, size);
H A Dstring.cpp1039 wxString::wxString(const wchar_t *pwz, const wxMBConv& conv, size_t nLength)
1042 if ( pwz && nLength != 0 )
1050 wxCharBuffer buf = conv.cWC2MB(pwz, nLength, &nLenMB);
1130 wxString& wxString::operator=(const wchar_t *pwz)
1132 wxString str(pwz);
H A Dstrconv.cpp382 const wxCharBuffer wxMBConv::cWC2MB(const wchar_t *pwz) const
384 if ( pwz )
386 const size_t nLen = WC2MB(NULL, pwz, 0);
393 if ( WC2MB(buf.data(), pwz, nLen + extraLen) != wxCONV_FAILED )
2102 virtual size_t WC2MB(char *buf, const wchar_t *pwz, size_t n) const argument
2142 pwz, // input string
2170 wcscmp(wcBuf, pwz) != 0 )
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dstring.h733 wxString(const wchar_t *pwz,
977 wxString& operator=(const wchar_t *pwz);
H A Dwxchar.h1214 WXDLLIMPEXP_BASE wchar_t *wxStrdupW(const wchar_t *pwz);

Completed in 108 milliseconds