• 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:MB2WC

177     // directly, the existins ones only implement the old MB2WC() and so, to
181 // then using MB2WC() to convert it
225 size_t lenChunk = MB2WC(NULL, src, 0);
244 if ( MB2WC(dst, src, lenChunk) == wxCONV_FAILED )
333 size_t wxMBConv::MB2WC(wchar_t *outBuff, const char *inBuff, size_t outLen) const
367 const size_t nLen = MB2WC(NULL, psz, 0);
374 if ( MB2WC(buf.data(), psz, nLen + 1) != wxCONV_FAILED )
466 size_t wxMBConvLibc::MB2WC(wchar_t *buf, const char *psz, size_t n) const
538 size_t wxMBConvUTF7::MB2WC(wchar_t *buf, const char *psz, size_t n) const
727 size_t wxMBConvUTF8::MB2WC(wchar_t *buf, const char *psz, size_t n) const
1597 virtual size_t MB2WC(wchar_t *buf, const char *psz, size_t n) const;
1786 size_t wxMBConv_iconv::MB2WC(wchar_t *buf, const char *psz, size_t n) const
1882 // NB: explained in MB2WC
1958 // NB: explained in MB2WC
2026 virtual size_t MB2WC(wchar_t *buf, const char *psz, size_t n) const
2041 return wxConvUTF8.MB2WC(buf, psz, n);
2046 return wxConvUTF7.MB2WC(buf, psz, n);
2169 if ( MB2WC(wcBuf.data(), buf, n) == wxCONV_FAILED ||
2601 size_t MB2WC(wchar_t * szOut, const char * szUnConv, size_t nOutSize) const
2637 converter.MB2WC( szOut, (const char*)szUniCharBuffer, nOutSize );
2791 size_t MB2WC(wchar_t *buf, const char *psz, size_t n) const
2829 res = converter.MB2WC( (buf ? buf : tbuf), (const char*)ubuf, n ) ;
2898 if ( MB2WC(wcBuf.data(), buf, n) == wxCONV_FAILED ||
3019 size_t MB2WC(wchar_t *buf, const char *psz, size_t n) const
3071 res = converter.MB2WC( (buf ? buf : tbuf), (const char*)ubuf, n ) ;
3151 size_t MB2WC(wchar_t *buf, const char *psz, size_t WXUNUSED(n)) const
3641 size_t wxCSConv::MB2WC(wchar_t *buf, const char *psz, size_t n) const
3644 return wxMBConv::MB2WC(buf, psz, n);