Searched refs:codeset (Results 1 - 5 of 5) sorted by relevance

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DCodeSetConversion.java169 private OSFCodeSetRegistry.Entry codeset; field in class:CodeSetConversion.JavaCTBConverter
171 public JavaCTBConverter(OSFCodeSetRegistry.Entry codeset, argument
175 ctb = cache.getCharToByteConverter(codeset.getName());
177 Charset tmpCharset = Charset.forName(codeset.getName());
179 cache.setConverter(codeset.getName(), ctb);
185 throw wrapper.invalidCtbConverterName(icne,codeset.getName());
190 throw wrapper.invalidCtbConverterName(ucne,codeset.getName());
193 this.codeset = codeset;
236 return codeset
322 private OSFCodeSetRegistry.Entry codeset; field in class:CodeSetConversion.JavaBTCConverter
324 JavaBTCConverter(OSFCodeSetRegistry.Entry codeset) argument
507 getCTBConverter(OSFCodeSetRegistry.Entry codeset) argument
527 getCTBConverter(OSFCodeSetRegistry.Entry codeset, boolean littleEndian, boolean useByteOrderMarkers) argument
566 getBTCConverter(OSFCodeSetRegistry.Entry codeset) argument
573 getBTCConverter(OSFCodeSetRegistry.Entry codeset, boolean defaultToLittleEndian) argument
[all...]
/openjdk7/jdk/src/solaris/instrument/
H A DEncodingSupport_md.c61 char *codeset; local
66 /* Get the codeset name */
67 codeset = (char*)nl_langinfo(CODESET);
68 if ( codeset == NULL || codeset[0] == 0 ) {
69 UTF_DEBUG(("NO codeset returned by nl_langinfo(CODESET)\n"));
73 UTF_DEBUG(("Codeset = %s\n", codeset));
76 if (strcmp(codeset, "UTF-8") == 0 || strcmp(codeset, "utf8") == 0 ) {
82 iconvToPlatform = iconv_open(codeset, "UT
[all...]
/openjdk7/jdk/src/solaris/npt/
H A Dutf_md.c44 char *codeset; local
53 /* Get the codeset name */
54 codeset = (char*)nl_langinfo(CODESET);
55 if ( codeset == NULL || codeset[0] == 0 ) {
60 if (strcmp(codeset, "UTF-8") == 0 || strcmp(codeset, "utf8") == 0 ) {
65 ui->iconvToPlatform = iconv_open(codeset, "UTF-8");
69 ui->iconvFromPlatform = iconv_open("UTF-8", codeset);
/openjdk7/jdk/src/macosx/native/sun/awt/splashscreen/
H A Dsplashscreen_sys.m77 const char *codeset;
90 codeset = nl_langinfo(CODESET);
91 if ( codeset == NULL || codeset[0] == 0 ) {
98 cd = iconv_open(codeset_out, codeset);
/openjdk7/jdk/src/solaris/native/sun/awt/splashscreen/
H A Dsplashscreen_sys.c54 const char *codeset; local
67 codeset = nl_langinfo(CODESET);
68 if ( codeset == NULL || codeset[0] == 0 ) {
75 cd = iconv_open(codeset_out, codeset);

Completed in 53 milliseconds