Home
last modified time | relevance | path

Searched refs:to_charset (Results 1 – 9 of 9) sorted by relevance

/third_party/boost/libs/locale/src/encoding/
Dcodepage.cpp39 char const *to_charset, in convert_between() argument
46 if(cvt->open(to_charset,from_charset,how)) in convert_between()
51 if(cvt->open(to_charset,from_charset,how)) in convert_between()
56 if(cvt->open(to_charset,from_charset,how)) in convert_between()
59 throw invalid_charset_error(std::string(to_charset) + " or " + from_charset); in convert_between()
136 … std::string const &to_charset,std::string const &from_charset,method_type how) in between() argument
138 return convert_between(begin,end,to_charset.c_str(),from_charset.c_str(),how); in between()
Duconv_codepage.ipp117 virtual bool open(char const *to_charset,char const *from_charset,method_type how)
122 … cvt_to_.reset(new to_type(to_charset,how == skip ? impl_icu::cvt_skip : impl_icu::cvt_stop));
Dconv.hpp72 … virtual bool open(char const *to_charset,char const *from_charset,method_type how) = 0;
Diconv_codepage.ipp167 virtual bool open(char const *to_charset,char const *from_charset,method_type how)
169 return self_.do_open(to_charset,from_charset,how);
Dwconv_codepage.ipp262 bool open(char const *to_charset,char const *from_charset,method_type how)
265 to_code_page_ = encoding_to_windows_codepage(to_charset);
/third_party/glib/gio/tests/
Dfilter-cat.c43 static char *to_charset = NULL; variable
54 {"to-charset", 0, 0, G_OPTION_ARG_STRING, &to_charset, "to charset", NULL},
112 if (from_charset && to_charset) in cat()
114 cconv = g_charset_converter_new (to_charset, from_charset, &error); in cat()
/third_party/glib/gio/
Dgcharsetconverter.h50 GCharsetConverter *g_charset_converter_new (const gchar *to_charset,
Dgcharsetconverter.c206 g_charset_converter_new (const gchar *to_charset, in g_charset_converter_new() argument
214 "to-charset", to_charset, in g_charset_converter_new()
/third_party/e2fsprogs/misc/
Dblkid.c269 static int code_convert(char *from_charset, char *to_charset,char *inbuf, size_t inlen, char *outbu… in code_convert() argument
275 cd = iconv_open(to_charset, from_charset); in code_convert()