Home
last modified time | relevance | path

Searched refs:fromcode (Results 1 – 11 of 11) sorted by relevance

/third_party/flutter/skia/third_party/externals/sdl/src/stdlib/
DSDL_iconv.c51 SDL_iconv_open(const char *tocode, const char *fromcode) in SDL_iconv_open() argument
53 return (SDL_iconv_t) ((size_t) iconv_open(tocode, fromcode)); in SDL_iconv_open()
207 SDL_iconv_open(const char *tocode, const char *fromcode) in SDL_iconv_open() argument
215 if (!fromcode || !*fromcode) { in SDL_iconv_open()
216 fromcode = getlocale(fromcode_buffer, sizeof(fromcode_buffer)); in SDL_iconv_open()
222 if (SDL_strcasecmp(fromcode, encodings[i].name) == 0) { in SDL_iconv_open()
862 SDL_iconv_string(const char *tocode, const char *fromcode, const char *inbuf, in SDL_iconv_string() argument
872 cd = SDL_iconv_open(tocode, fromcode); in SDL_iconv_string()
878 if (!fromcode || !*fromcode) { in SDL_iconv_string()
879 fromcode = "UTF-8"; in SDL_iconv_string()
[all …]
/third_party/libxml2/os400/
Dlibxmlmain.c46 char fromcode[32]; in main() local
53 strncpy(fromcode, "IBMCCSID000000000010", sizeof fromcode); in main()
54 cd = iconv_open(tocode, fromcode); in main()
/third_party/libxml2/os400/iconv/
Diconv.c94 IconvOpen(const char * tocode, const char * fromcode) in IconvOpen() argument
98 int fromccsid = findEncoding(&fromcode); in IconvOpen()
Diconv.h22 Iconv_t IconvOpen(const char * tocode, const char * fromcode);
/third_party/flutter/skia/third_party/externals/sdl/include/
DSDL_stdinc.h473 const char *fromcode);
483 const char *fromcode,
/third_party/libxml2/os400/iconv/bldcsndfa/
Dbldcsndfa.c260 char fromcode[33]; in iconv_open_ccsid() local
263 makecode(fromcode, ccsidin); in iconv_open_ccsid()
268 fromcode[18] = '1'; in iconv_open_ccsid()
270 return iconv_open(tocode, fromcode); in iconv_open_ccsid()
/third_party/python/Python/
Dfileutils.c955 const char *tocode, const char *fromcode) in _Py_ConvertWCharForm() argument
972 iconv_t cd = iconv_open(tocode, fromcode); in _Py_ConvertWCharForm()
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/
Dmod.rs1713 pub fn iconv_open(tocode: *const ::c_char, fromcode: *const ::c_char) -> iconv_t; in iconv_open()
/third_party/rust/crates/libc/src/unix/bsd/netbsdlike/netbsd/
Dmod.rs2741 pub fn iconv_open(tocode: *const ::c_char, fromcode: *const ::c_char) -> iconv_t; in iconv_open()
/third_party/rust/crates/libc/src/unix/linux_like/linux/
Dmod.rs4438 pub fn iconv_open(tocode: *const ::c_char, fromcode: *const ::c_char) -> iconv_t; in iconv_open()
/third_party/rust/crates/libc/src/unix/bsd/apple/
Dmod.rs5912 pub fn iconv_open(tocode: *const ::c_char, fromcode: *const ::c_char) -> iconv_t; in iconv_open()