Searched refs:cWX2MB (Results 1 - 25 of 31) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/
H A Dmslu.cpp92 wxConvLocal.cWX2MB((const wxChar*)lData),
154 return rename(wxConvFile.cWX2MB(oldname), wxConvFile.cWX2MB(newname));
162 return remove(wxConvFile.cWX2MB(name));
170 return fopen(wxConvFile.cWX2MB(name),wxConvFile.cWX2MB(mode));
184 return open(wxConvFile.cWX2MB(name), flags, mode);
186 return _open(wxConvFile.cWX2MB(name), flags, mode);
195 return _access(wxConvFile.cWX2MB(name), mode);
203 return _mkdir(wxConvFile.cWX2MB(nam
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/utils/aLinkCreator/src/
H A Dalcc.h46 #define unicode2char(x) (const char*) aMuleConv.cWX2MB(x)
H A Ded2khash.cpp52 #define unicode2char(x) (const char*) aMuleConv.cWX2MB(x)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/x11/
H A Dprivate.h44 #define wxGTK_CONV(s) wxConvUTF8.cWX2MB(s)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dstrconv.h111 const wxCharBuffer cWX2MB(const wchar_t *psz) const { return cWC2MB(psz); } function in class:wxMBConv
116 const char* cWX2MB(const char *psz) const { return psz; } function in class:wxMBConv
481 #define wxFNCONV(name) wxConvFileName->cWX2MB(name)
502 const char* cWX2MB(const char *psz) const { return psz; } function in class:wxMBConv
527 #define wxConvertWX2MB(s) wxConvCurrent->cWX2MB(s)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Ddobjcmn.cpp245 wxCharBuffer buffer = GetConv(format).cWX2MB( GetText().c_str() );
255 wxCharBuffer buffer = GetConv(format).cWX2MB( GetText().c_str() );
292 wxCharBuffer buffer = GetConv(format).cWX2MB( GetText().c_str() );
305 wxCharBuffer buffer = GetConv(format).cWX2MB( GetText().c_str() );
H A Dsstream.cpp47 : m_str(s), m_buf(wxMBConvUTF8().cWX2MB(s).release()), m_len(strlen(m_buf))
H A Dwxchar.cpp1342 return vsscanf(wxConvLibc.cWX2MB(ws), wxConvLibc.cWX2MB(format), argcopy);
1879 char *localeOld = setlocale(category, wxConvLibc.cWX2MB(locale));
2105 return fopen( wxConvFile.cWX2MB(path), mode_buffer );
2114 return freopen( wxConvFile.cWX2MB(path), mode_buffer, stream );
2119 return remove( wxConvFile.cWX2MB(path) );
2124 return rename( wxConvFile.cWX2MB(oldpath), wxConvFile.cWX2MB(newpath) );
2139 return atof(wxConvLibc.cWX2MB(psz));
2147 return atoi(wxConvLibc.cWX2MB(ps
[all...]
H A Dfilefn.cpp135 return stat( wxConvFile.cWX2MB( file_name ), buf );
140 return lstat( wxConvFile.cWX2MB( file_name ), buf );
145 return access( wxConvFile.cWX2MB( pathname ), mode );
150 return open( wxConvFile.cWX2MB( pathname ), flags, mode );
H A Dhttp.cpp277 const wxWX2MBbuf pathbuf = wxConvLocal.cWX2MB(buf);
H A Dzipstrm.cpp1007 const wxWX2MBbuf name_buf = conv.cWX2MB(unixName);
1083 const wxWX2MBbuf name_buf = conv.cWX2MB(unixName);
1088 const wxWX2MBbuf comment_buf = conv.cWX2MB(m_Comment);
1238 const wxWX2MBbuf comment_buf = conv.cWX2MB(m_Comment);
H A Dfilename.cpp777 wxCharBuffer buf( wxConvFile.cWX2MB( path ) );
823 wxCharBuffer buf = wxConvFile.cWX2MB( path );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/gtk/
H A Dprivate.h27 #define wxGTK_CONV(s) wxConvUTF8.cWX2MB((s))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/libs/common/
H A DStringFunctions.h49 * get free'ed as soon as the return value of cWX2MB gets out of scope.
80 inline Unicode2CharBuf unicode2UTF8(const wxChar* x) { return wxConvUTF8.cWX2MB(x); }
H A DStringFunctions.cpp45 Unicode2CharBuf buf1(wxConvLocal.cWX2MB(s));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/gtk/
H A Dapp.cpp473 argvGTK[i] = wxStrdupA(wxConvUTF8.cWX2MB(argv[i]));
492 while ( strcmp(wxConvUTF8.cWX2MB(argv[i]), argvGTK[i]) != 0 )
H A Danimate.cpp86 wxConvFileName->cWX2MB(name), NULL);
H A Dradiobox.cpp629 wxConvCurrent->cWX2MB(tip));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/generic/
H A Ddcpsg.h93 void PsPrint( const wxChar* psdata ) { PsPrint( wxConvUTF8.cWX2MB( psdata ) ); }
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/gtk1/
H A Dapp.cpp600 argvGTK[i] = wxStrdupA(wxConvUTF8.cWX2MB(argv[i]));
619 while ( strcmp(wxConvUTF8.cWX2MB(argv[i]), argvGTK[i]) != 0 )
H A Dradiobox.cpp554 gtk_tooltips_set_tip( tips, widget, wxConvCurrent->cWX2MB(tip), (gchar*) NULL );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dmbcnvfil.tex18 wxFNCONV, is defined to wxConvFileName->cWX2MB in this case. You could
H A Dtmbconv.tex159 printf("Data: %s\n", (const char*) wxConvCurrent->cWX2MB(unicode_data));
166 const wxWX2MBbuf tmp_buf = wxConvCurrent->cWX2MB(unicode_data);
172 If a conversion had taken place in cWX2MB (i.e. in a Unicode build),
174 (The macro wxWX2MBbuf reflects the correct return value of cWX2MB
H A Dmbconv.tex183 \membersection{wxMBConv::cWX2MB}\label{wxmbconvcwx2mb}
185 \constfunc{const char*}{cWX2MB}{\param{const wxChar* }{psz}}
187 \constfunc{const wxCharBuffer}{cWX2MB}{\param{const wxChar* }{psz}}
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/deprecated/
H A Dwxexpr.cpp799 const wxWX2MBbuf val = wxConvLibc.cWX2MB(value.string);
817 const wxWX2MBbuf val = wxConvLibc.cWX2MB(value.word);

Completed in 188 milliseconds

12