Searched refs:wxWCharBuffer (Results 1 - 25 of 34) sorted by relevance

12

/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);
177 wxWCharBuffer theBuffer = szTheString.wc_str(wxConvLibc);
183 wxWCharBuffer theLocalBuffer = szLocalTheString.wc_str(wxConvLocal);
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 */,
H A Dtokenizer.cpp255 wxWCharBuffer
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dbuffer.h134 DEFINE_BUFFER(wxWCharBuffer, wchar_t, wxStrdupW);
136 DEFINE_WRITABLE_BUFFER(wxWritableWCharBuffer, wxWCharBuffer, wchar_t);
145 typedef wxWCharBuffer wxWxCharBuffer;
147 #define wxMB2WXbuf wxWCharBuffer
157 #define wxWX2WCbuf wxWCharBuffer
H A Dstrconv.h88 const wxWCharBuffer cMB2WC(const char *in) const;
103 const wxWCharBuffer
110 const wxWCharBuffer cMB2WX(const char *psz) const { return cMB2WC(psz); }
118 const wxWCharBuffer cWX2WC(const char *psz) const { return cMB2WC(psz); }
538 extern WXDLLIMPEXP_BASE wxWCharBuffer wxSafeConvertMB2WX(const char *s);
H A Dstring.h721 // from wxWCharBuffer (i.e. return from wxGetString)
722 wxString(const wxWCharBuffer& psz) : wxStringBase(psz.data()) { }
881 wxWCharBuffer buf(wxConvUTF8.cMB2WC(utf8, len == npos ? wxNO_LEN : len, &wlen));
942 const wxWCharBuffer wc_str(const wxMBConv& conv) const;
969 // from wxWCharBuffer
970 wxString& operator=(const wxWCharBuffer& psz)
1010 wxString& operator<<(const wxWCharBuffer& s)
1012 void operator+=(const wxWCharBuffer& s)
1464 wxWCharBuffer m_buf;
1491 wxWCharBuffer m_bu
[all...]
H A Dwxchar.h1231 class WXDLLIMPEXP_BASE wxWCharBuffer; variable in typeref:class:WXDLLIMPEXP_BASE
1232 WXDLLIMPEXP_BASE wxWCharBuffer wxSetlocale(int category, const wxChar *locale);
/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);
H A Dmbconvtest.cpp722 wxWCharBuffer DecodeUTF8(
757 wxWCharBuffer wideBuffer((size_t)0);
813 wxWCharBuffer wbuf(lenW + 1); // allocates lenW + 2 characters
953 wxWCharBuffer outputBuffer(outputBufferChars);
995 wxWCharBuffer inputCopy( wideChars + 1 );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dtbuffer.tex16 The first is one for dealing with character buffers, namely wxCharBuffer for char pointer or multi-byte c strings and wxWCharBuffer for wchar\_t pointer or wide character c strings.
24 As mentioned, wxCharBuffer and its wide character variant wxWCharBuffer deal with c strings in memory. They have two constructors, one in which you pass the c string you want them to have a copy of, and another where you specify the size of the buffer in memory in characters you want.
H A Dmbconv.tex129 \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}}
134 \helpref{MB2WC}{wxmbconvmb2wc}, allocating a temporary wxWCharBuffer to hold
174 \constfunc{const wxWCharBuffer}{cMB2WX}{\param{const char* }{psz}}
179 result in a wxWCharBuffer. The macro wxMB2WXbuf is defined as the correct
211 \constfunc{const wxWCharBuffer}{cWX2WC}{\param{const wxChar* }{psz}}
215 result in a wxWCharBuffer. The macro wxWX2WCbuf is defined as the correct
H A Dtmbconv.tex143 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/src/common/
H A Dinit.cpp175 wxWCharBuffer buf(wxConvFileName->cMB2WX(argv[i]));
177 wxWCharBuffer buf(wxConvLocal.cMB2WX(argv[i]));
H A Dsstream.cpp202 wxWCharBuffer wbuf(m_conv.cMB2WC(src, srcLen, NULL /* out len */));
H A Ddobjcmn.cpp271 wxWCharBuffer buffer = GetConv(format).cMB2WX( (const char*)buf );
321 wxWCharBuffer buffer = GetConv(format).cMB2WX( (const char*)buf );
H A Dstrconv.cpp291 wxWCharBuffer bufTmp;
299 bufTmp = wxWCharBuffer(srcLen);
362 const wxWCharBuffer wxMBConv::cMB2WC(const char *psz) const
371 wxWCharBuffer buf(nLen /* +1 added implicitly */);
379 return wxWCharBuffer();
401 const wxWCharBuffer
407 wxWCharBuffer wbuf(dstLen - 1);
424 return wxWCharBuffer();
2168 wxWCharBuffer wcBuf(n);
2896 wxWCharBuffer wcBu
[all...]
H A Dwxchar.cpp1877 WXDLLEXPORT wxWCharBuffer wxSetlocale(int category, const wxChar *locale)
1881 return wxWCharBuffer(wxConvLibc.cMB2WC(localeOld));
2161 static wxWCharBuffer value((wxChar*)NULL);
2194 wxWCharBuffer wbuf = wxConvLibc.cMB2WX(buf);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/unix/
H A Ddlunix.cpp333 wxWCharBuffer buffer = wxConvLocal.cMB2WC( wx_dlerror() );
H A Dutilsunx.cpp717 wxWCharBuffer buffer( ptr );
/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/src/mac/carbon/
H A Dgraphics.cpp1803 const wxWCharBuffer wchar = str.wc_str( ((wxMacCoreGraphicsFontData*)m_font.GetRefData())->GetConverter() );
1813 wxWCharBuffer wchar = str.wc_str( ((wxMacCoreGraphicsFontData*)m_font.GetRefData())->GetConverter() );
1928 const wxWCharBuffer wchar = str.wc_str( ((wxMacCoreGraphicsFontData*)m_font.GetRefData())->GetConverter() );
1938 wxWCharBuffer wchar = str.wc_str( ((wxMacCoreGraphicsFontData*)m_font.GetRefData())->GetConverter() );
1996 const wxWCharBuffer wchar = text.wc_str( ((wxMacCoreGraphicsFontData*)m_font.GetRefData())->GetConverter() );
2006 wxWCharBuffer wchar = text.wc_str( ((wxMacCoreGraphicsFontData*)m_font.GetRefData())->GetConverter() );
H A Ddccg.cpp900 const wxWCharBuffer wchar = str.wc_str( wxConvLocal ) ;
910 wxWCharBuffer wchar = str.wc_str( wxConvLocal ) ;
1032 const wxWCharBuffer wchar = str.wc_str( wxConvLocal ) ;
1042 wxWCharBuffer wchar = str.wc_str( wxConvLocal ) ;
1093 const wxWCharBuffer wchar = text.wc_str( wxConvLocal ) ;
1103 wxWCharBuffer wchar = text.wc_str( wxConvLocal ) ;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/corefoundation/
H A Dcfstring.cpp737 const wxWCharBuffer wchar = str.wc_str( wxConvLocal ) ;
748 wxWCharBuffer wchar = str.wc_str( wxConvLocal ) ;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/
H A Dgraphics.cpp733 wxWCharBuffer s = font.GetFaceName().wc_str( *wxConvUI );
1271 wxWCharBuffer s = str.wc_str( *wxConvUI );
1281 wxWCharBuffer s = str.wc_str( *wxConvUI );
1332 wxWCharBuffer ws = text.wc_str( *wxConvUI );
H A Dtextctrl.cpp950 wxWCharBuffer wchBuf(len); // allocates one extra character
1003 wxWCharBuffer wchBuf(len);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/os2/
H A Dutils.cpp438 wxWCharBuffer retBuffer (wxBuffer);

Completed in 176 milliseconds

12