/picolibc-latest/newlib/libc/iconv/ces/ |
D | mkdeps.pl | 248 my $encoding; 259 if defined $encoding; 261 $encoding = $2; 293 err "(process_section_encodings()) $encoding is defined twice" 294 if (defined $encces{$encoding}); 296 if not defined $encoding; 300 push @{$cesenc{$ces}}, $encoding; 301 $encces{$encoding} = $ces; 307 push @{$ccsenc{$_}}, $encoding foreach (@ccs); 309 $encalias{$encoding} = $aliases; [all …]
|
D | table-pcs.c | 66 const char *encoding) in table_pcs_from_ucs_init() argument 68 return _iconv_from_ucs_ces_handlers_table.init (encoding); in table_pcs_from_ucs_init() 110 const char *encoding) in table_pcs_to_ucs_init() argument 112 return _iconv_to_ucs_ces_handlers_table.init (encoding); in table_pcs_to_ucs_init()
|
D | utf-16.c | 69 const char *encoding) in utf_16_init_from_ucs() argument 76 if (strcmp (encoding, UTF_16LE) == 0) in utf_16_init_from_ucs() 78 else if (strcmp (encoding, UTF_16BE) == 0) in utf_16_init_from_ucs() 169 const char *encoding) in utf_16_init_to_ucs() argument 176 if (strcmp (encoding, UTF_16BE) == 0) in utf_16_init_to_ucs() 178 else if (strcmp (encoding, UTF_16LE) == 0) in utf_16_init_to_ucs()
|
D | euc.c | 100 const char *encoding) in euc_from_ucs_init() argument 110 if (strcmp (encoding, ICONV_ENCODING_EUC_JP) == 0) in euc_from_ucs_init() 120 if (strcmp (encoding, ICONV_ENCODING_EUC_KR) == 0) in euc_from_ucs_init() 130 if (strcmp (encoding, ICONV_ENCODING_EUC_TW) == 0) in euc_from_ucs_init() 255 const char *encoding) in euc_to_ucs_init() argument 265 if (strcmp (encoding, ICONV_ENCODING_EUC_JP) == 0) in euc_to_ucs_init() 275 if (strcmp (encoding, ICONV_ENCODING_EUC_KR) == 0) in euc_to_ucs_init() 285 if (strcmp (encoding, ICONV_ENCODING_EUC_TW) == 0) in euc_to_ucs_init()
|
D | ucs-2.c | 52 const char *encoding) in ucs_2_init() argument 59 if (strcmp (encoding, UCS_2LE) == 0) in ucs_2_init()
|
D | ucs-4.c | 53 const char *encoding) in ucs_4_init() argument 60 if (strcmp (encoding, UCS_4LE) == 0) in ucs_4_init()
|
D | table.c | 89 const char *encoding) in table_init_from_ucs() argument 96 if (strcmp (_iconv_ccs[i]->name, encoding) == 0) in table_init_from_ucs() 118 return (void *)load_file (encoding, 1); in table_init_from_ucs() 170 const char *encoding) in table_init_to_ucs() argument 177 if (strcmp (_iconv_ccs[i]->name, encoding) == 0) in table_init_to_ucs() 199 return (void *)load_file (encoding, 0); in table_init_to_ucs()
|
/picolibc-latest/newlib/libc/iconv/lib/ |
D | iconvnls.c | 308 const char *encoding, in _iconv_nls_open() argument 324 if ((*towc = iconv_open (wchar_encoding, encoding)) == (iconv_t)-1) in _iconv_nls_open() 327 if ((*tomb = iconv_open (encoding, wchar_encoding)) == (iconv_t)-1) in _iconv_nls_open() 335 if ((*towc = iconv_open1 (wchar_encoding, encoding)) == (iconv_t)-1) in _iconv_nls_open() 338 if ((*tomb = iconv_open1 (encoding, wchar_encoding)) == (iconv_t)-1) in _iconv_nls_open()
|
D | ucsconv.h | 69 const char *encoding); 172 const char *encoding);
|
D | encoding.deps | 39 # 2. Each encoding's aliases; 70 # encoding when sizeof(wchar_t) == 2 103 # encoding when sizeof(wchar_t) == 4 371 # big5 - an encoding for Traditional Chinese
|
/picolibc-latest/newlib/libc/iconv/ |
D | iconv.tex | 17 * The encodings description file:: The 'encoding.deps' file and 'mkdeps.pl' 18 * How to add new encoding:: The steps to add new encoding support 29 @findex encoding 35 The iconv library is intended to convert characters from one encoding to 56 Terms like @dfn{encoding} or @dfn{character set} aren't well defined and 63 @dfn{encoding} - a machine representation of characters by means of bits; 67 characters, i.e. the encoding is the machine representation of the character set; 91 of a CES and form some encoding. Thus, CES may be considered as a 92 function of CCS which produces some encoding. Note, that CES may be 97 Thus, an encoding may be considered as one or more CCS + CES. [all …]
|
/picolibc-latest/newlib/libc/include/sys/ |
D | iconvnls.h | 71 _iconv_nls_open (const char *encoding,
|
/picolibc-latest/newlib/libc/posix/ |
D | runetype.h | 69 char encoding[32]; /* ASCII name of this encoding */ member
|
/picolibc-latest/newlib/ |
D | refcontainers.xslt | 3 …<xsl:output method="xml" encoding="UTF-8" indent="yes" doctype-public="-//OASIS//DTD DocBook V4.5/…
|
D | ChangeLog-2015 | 5760 value encoding. 10254 to fix reentrancy and bug on encoding error in multibyte locales. 13577 * libc/iconv/encoding.aliases: New file. 13727 * libc/iconv/lib/encoding.deps: Ditto.
|
/picolibc-latest/ |
D | CONTRIBUTING.md | 57 * utf-8 encoding
|
D | meson.build | 1486 # Dig out the list of available encodings from the encoding.aliases file. Only 1493 foreach line : fs.read('newlib/libc/iconv/encoding.aliases').split('\n') 1499 …-e', '/^#/d', '-e', '/^$/d', '-e', 's/ .*$//', files('newlib/libc/iconv/encoding.aliases')[0]], ch… 1524 # Set config variables for each requested 'from' encoding 1529 …error('Requested from encoding ' + from + ' is not available. Look in newlib/libc/iconv/encoding.a… 1537 # Set config variables for each requested 'to' encoding 1541 …error('Requested to encoding ' + to + ' is not available. Look in newlib/libc/iconv/encoding.alias…
|
D | COPYING.picolibc | 27 newlib/libc/iconv/lib/encoding.deps
|
/picolibc-latest/newlib/doc/ |
D | makedocbook.py | 824 s = lxml.etree.tostring(rootelement, pretty_print=True, encoding='unicode')
|