Searched refs:cMB2WC (Results 1 - 25 of 29) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/tests/mbconv/
H A Dconvautotest.cpp74 wxWCharBuffer wbuf = wxConvAuto().cMB2WC(src);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/tests/strings/
H A Dunicode.cpp153 wxWCharBuffer wbuf = wxConvLibc.cMB2WC("", 0, &len);
204 wxWCharBuffer wbuf = conv.cMB2WC(s, (size_t)-1, NULL);
304 wxWCharBuffer wbuf(conv.cMB2WC("\x01\0\0B\0C" /* A macron BC */, 6, &len));
328 wxWCharBuffer wbuf(conv.cMB2WC("\0\0\x01\0\0\0\0B\0\0\0C" /* A macron BC */,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dstrconv.h88 const wxWCharBuffer cMB2WC(const char *in) const;
104 cMB2WC(const char *in, size_t inLen, size_t *outLen) const;
110 const wxWCharBuffer cMB2WX(const char *psz) const { return cMB2WC(psz); }
118 const wxWCharBuffer cWX2WC(const char *psz) const { return cMB2WC(psz); }
121 // this function is used in the implementation of cMB2WC() to distinguish
H A Dstring.h877 { return wxString(wxConvUTF8.cMB2WC(utf8)); }
881 wxWCharBuffer buf(wxConvUTF8.cMB2WC(utf8, len == npos ? wxNO_LEN : len, &wlen));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/gtk/
H A Dprivate.h51 #define wxGTK_CONV_BACK(s) wxConvLocal.cWC2WX(wxConvUTF8.cMB2WC((s)))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dsstream.cpp202 wxWCharBuffer wbuf(m_conv.cMB2WC(src, srcLen, NULL /* out len */));
H A Dtarstrm.cpp978 wxString key(wxConvUTF8.cMB2WC(pKey), GetConv());
979 wxString value(wxConvUTF8.cMB2WC(p), GetConv());
H A Dstring.cpp1021 wxWCharBuffer wbuf = conv.cMB2WC(psz, nLength, &nLenWide);
1061 return conv.cMB2WC(c_str(), length() + 1 /* size, not length */, NULL);
H A Dintl.cpp1367 msgid = wxString(inputConv->cMB2WC(data), *sourceConv);
1386 msgstr = wxString(inputConv->cMB2WC(str), *wxConvUI);
H A Dstrconv.cpp87 // helper function of cMB2WC(): check if n bytes at this location are all NUL
362 const wxWCharBuffer wxMBConv::cMB2WC(const char *psz) const function in class:wxMBConv
402 wxMBConv::cMB2WC(const char *inBuff, size_t inLen, size_t *outLen) const function in class:wxMBConv
H A Dfileconf.cpp519 str = conv.cMB2WC((char *)buf.GetData(), buf.GetDataLen(), &len);
H A Dwxchar.cpp1881 return wxWCharBuffer(wxConvLibc.cMB2WC(localeOld));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/libs/common/
H A DStringFunctions.h87 inline Char2UnicodeBuf char2filename(const char* x) { return wxConvFile.cMB2WC(x); }
H A DPath.cpp39 // multibyte (as in cWC2MB/cMB2WC).
83 wxString result = wxConvUTF8.cMB2WC(fn);
97 result = wxConvISO8859_1.cMB2WC(fn);
278 m_filesystem = wxConvFile.cMB2WC(fn);
301 return CPath(wxConvFile.cMB2WC(fn));
314 return wxConvISO8859_1.cMB2WC(fn);
H A DTextFile.cpp130 line += conv.cMB2WC(buffer);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/unix/
H A Ddir.cpp135 de_d_name = wxConvFileName->cMB2WC( de->d_name );
H A Ddlunix.cpp333 wxWCharBuffer buffer = wxConvLocal.cMB2WC( wx_dlerror() );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/unittests/tests/
H A DPathTest.cpp22 { true, wxConvFileName->cMB2WC("\xe1\x62\x63"), wxT("\xe1\x62\x63") },
23 { true, wxConvFileName->cMB2WC("\xe6\xf8\xe5"), wxT("\xe6\xf8\xe5") },
24 { true, wxConvFileName->cMB2WC("\xd8\xa7\xd9\x84\xd8\xb9"), wxT("\u0627\u0644\u0639") },
54 return wxConvFile.cMB2WC(fn);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dmbconv.tex127 \membersection{wxMBConv::cMB2WC}\label{wxmbconvcmb2wc}
129 \constfunc{const wxWCharBuffer}{cMB2WC}{\param{const char *}{in}}
131 \constfunc{const wxWCharBuffer}{cMB2WC}{\param{const char *}{in}, \param{size\_t }{inLen}, \param{size\_t }{*outLen}}
162 But notice that just as with \helpref{cMB2WC}{wxmbconvmb2wc}, it is more
H A Dtmbconv.tex140 wxString str(wxConvUTF8.cMB2WC(input_data), *wxConvCurrent);
143 Here, cMB2WC of the UTF8 object returns a wxWCharBuffer containing a Unicode
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/tests/regex/
H A Dregextest.cpp168 const wxWCharBuffer wstr = wxConvUTF8.cMB2WC(str);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/printing/
H A Dprinting.cpp364 wxString tmp = wxConvUTF8.cMB2WC( test );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/carbon/
H A Ddataobj.cpp625 filenames = wxString (wxConvLocal.cWC2WX(wxConvFileName->cMB2WC( (const char*)pBuf)));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/xml/
H A Dxml.cpp463 wxConvUTF8.cMB2WC(s, len == wxString::npos ? wxNO_LEN : len, NULL));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/gtk/gnome/
H A Dgprint.cpp1518 const wxWCharBuffer wdata = wxConvLocal.cMB2WC( text );
1817 const wxWCharBuffer wdata = wxConvLocal.cMB2WC( string );

Completed in 152 milliseconds

12