• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/

Lines Matching refs:WC2MB

310         size_t lenChunk = WC2MB(NULL, src, 0);
323 if ( WC2MB(dst, src, lenChunk) == wxCONV_FAILED )
346 size_t wxMBConv::WC2MB(char *outBuff, const wchar_t *inBuff, size_t outLen) const
386 const size_t nLen = WC2MB(NULL, pwz, 0);
393 if ( WC2MB(buf.data(), pwz, nLen + extraLen) != wxCONV_FAILED )
471 size_t wxMBConvLibc::WC2MB(char *buf, const wchar_t *psz, size_t n) const
641 size_t wxMBConvUTF7::WC2MB(char *buf, const wchar_t *psz, size_t n) const
876 size_t wxMBConvUTF8::WC2MB(char *buf, const wchar_t *psz, size_t n) const
1598 virtual size_t WC2MB(char *buf, const wchar_t *psz, size_t n) const;
1879 size_t wxMBConv_iconv::WC2MB(char *buf, const wchar_t *psz, size_t n) const
2102 virtual size_t WC2MB(char *buf, const wchar_t *pwz, size_t n) const
2644 size_t WC2MB(char *szOut, const wchar_t *szUnConv, size_t nOutSize) const
2654 nBufSize = converter.WC2MB( NULL, szUnConv, 0 );
2656 converter.WC2MB( (char*) szUniBuffer, szUnConv, nBufSize + sizeof(UniChar));
2844 size_t WC2MB(char *buf, const wchar_t *psz, size_t n) const
2865 size_t unicharlen = converter.WC2MB( NULL, psz, 0 ) ;
2868 converter.WC2MB( (char*) ubuf, psz, unicharlen + 2 ) ;
2951 size_t WC2MB(char *buf, const wchar_t *psz, size_t n) const
2972 size_t unicharlen = converter.WC2MB( NULL, psz, 0 ) ;
2975 converter.WC2MB( (char*) ubuf, psz, unicharlen + 2 ) ;
3162 size_t WC2MB(char *buf, const wchar_t *psz, size_t WXUNUSED(n)) const
3647 size_t wxCSConv::WC2MB(char *buf, const wchar_t *psz, size_t n) const
3650 return wxMBConv::WC2MB(buf, psz, n);