Searched refs:charsets (Results 1 - 17 of 17) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/
H A DXmlReader.java140 static private final Hashtable charsets = new Hashtable(31); field in class:XmlReader
143 charsets.put("UTF-16", "Unicode");
144 charsets.put("ISO-10646-UCS-2", "Unicode");
148 charsets.put("EBCDIC-CP-US", "cp037");
149 charsets.put("EBCDIC-CP-CA", "cp037");
150 charsets.put("EBCDIC-CP-NL", "cp037");
151 charsets.put("EBCDIC-CP-WT", "cp037");
153 charsets.put("EBCDIC-CP-DK", "cp277");
154 charsets.put("EBCDIC-CP-NO", "cp277");
155 charsets
[all...]
/openjdk7/jdk/src/share/classes/java/nio/charset/spi/
H A DCharsetProvider.java88 * Creates an iterator that iterates over the charsets supported by this
95 public abstract Iterator<Charset> charsets(); method in class:CharsetProvider
/openjdk7/jdk/test/java/nio/charset/spi/
H A DFooProvider.java35 public Iterator charsets() { method in class:FooProvider
/openjdk7/jdk/test/java/nio/charset/Charset/
H A DNIOCharsetAvailabilityTest.java54 Set charsets = new HashSet();
55 addCharsets(charsets, "sun.nio.cs");
56 addCharsets(charsets, "sun.nio.cs.ext");
58 // remove the charsets that the API says are available
62 charsets.remove(((Charset) iter.next()).getClass());
65 // remove the known pseudo-charsets that serve only to implement
66 // other charsets, but shouldn't be known to the public
67 charsets.remove(Class.forName("sun.nio.cs.Unicode"));
68 charsets.remove(Class.forName("sun.nio.cs.ext.ISO2022"));
69 charsets
84 addCharsets(Set charsets, final String packageName) argument
[all...]
/openjdk7/jdk/test/java/nio/charset/coders/
H A DBashCache.java39 private static final Charset[] charsets field in class:BashCache
54 Charset cs = charsets[rnd.nextInt(4)];
/openjdk7/jdk/test/sun/nio/cs/
H A DTest4200310.sh26 # charsets.jar, and localedata.jar
31 2>&1 $TESTJAVA/bin/jar -tf "$TESTJAVA/jre/lib/charsets.jar" >> class-list
37 echo FAILED: $duplicates are duplicated between rt.jar, charsets.jar, and localedata.jar
H A DTestIBMBugs.java46 String[] charsets = { "Cp949", "Cp949C" };
47 for (int n = 0; n < charsets.length; n++) {
48 String charset = charsets[n];
76 String[] charsets = { "Cp933", "Cp949", "Cp949C", "Cp970"};
77 for (int n = 0; n < charsets.length; n++) {
78 String charset = charsets[n];
/openjdk7/jdk/test/java/nio/charset/StandardCharsets/
H A DStandard.java61 Set<String> charsets = new HashSet<>();
77 charsets.add(((Charset)value).name());
80 check(charsets.containsAll(Arrays.asList(standardCharsets)));
81 charsets.removeAll(Arrays.asList(standardCharsets));
82 check(charsets.isEmpty());
/openjdk7/jdk/make/javax/swing/
H A DFILES.gmk28 $(CLASSBINDIR)/javax/swing/text/rtf/charsets/NeXT.txt \
29 $(CLASSBINDIR)/javax/swing/text/rtf/charsets/ansi.txt \
30 $(CLASSBINDIR)/javax/swing/text/rtf/charsets/cpg437.txt \
31 $(CLASSBINDIR)/javax/swing/text/rtf/charsets/cpg850.txt \
32 $(CLASSBINDIR)/javax/swing/text/rtf/charsets/mac.txt
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DFastCharsetProvider.java140 public final Iterator<Charset> charsets() { method in class:FastCharsetProvider
H A DAbstractCharsetProvider.java165 public final Iterator<Charset> charsets() { method in class:AbstractCharsetProvider
/openjdk7/jdk/make/sun/nio/cs/
H A DMakefile32 # charsets should be separated from nio module
54 CHARSETS_JAR = $(LIBDIR)/charsets.jar
60 # These sun.awt charsets use sun/nio/cs/ext charsets that only exist
61 # in JDK7 charsets.jar, which causes problem when build the symbol
64 # into charsets.jar here
/openjdk7/jdk/src/share/classes/java/nio/charset/
H A DCharset.java61 * available in the current Java virtual machine. Support for new charsets can
117 * <p> Some charsets have an <i>historical name</i> that is defined for
129 * its canonical name must be the name listed in the registry. Many charsets
144 * <h4>Standard charsets</h4>
149 * following standard charsets. Consult the release documentation for your
150 * implementation to see if any other charsets are supported. The behavior
151 * of such optional charsets may differ between implementations.
153 * <blockquote><table width="80%" summary="Description of standard charsets">
180 * <p> The <tt>UTF-16</tt> charsets are specified by <a
187 * <p> The <tt>UTF-16</tt> charsets us
[all...]
/openjdk7/jdk/make/tools/reorder/
H A DMakefile56 BOOTPATH = -Xbootclasspath:$(JRE_LIB)/rt.jar:$(JRE_LIB)/charsets.jar
76 $(MAKE) JARFILE=charsets.jar reorder.jar
/openjdk7/jdk/make/common/
H A DRelease-embedded.gmk123 charsets.jar \
/openjdk7/jdk/src/share/classes/sun/awt/datatransfer/
H A DDataTransferer.java213 * The native encodings/charsets for the Set of textNatives.
2569 * An IndexedComparator which compares two String charsets. The comparison
2571 * to ensure that non-Unicode, non-ASCII, non-default charsets are sorted
2572 * in alphabetical order, charsets are not automatically converted to their
2576 private static final Map charsets; field in class:DataTransferer.CharsetComparator
2590 // we prefer Unicode charsets
2607 charsets = Collections.unmodifiableMap(charsetsMap);
2648 * Compares charsets. Returns a negative integer, zero, or a positive
2654 * <li>All unsupported charsets are equal.
2656 * <li>Unicode charsets, suc
[all...]
/openjdk7/jdk/make/java/nio/
H A DMakefile896 $(HASHER_JARFILE) $(SCS_SRC)/standard-charsets
901 $(SH) -e genCharsetProvider.sh $(SCS_SRC)/standard-charsets $(SCS_GEN)

Completed in 486 milliseconds