Searched defs:charsets (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/test/java/nio/charset/spi/
H A DFooProvider.java35 public Iterator charsets() { method in class:FooProvider
/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/coders/
H A DBashCache.java39 private static final Charset[] charsets field in class:BashCache
54 Charset cs = charsets[rnd.nextInt(4)];
/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/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/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/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...]

Completed in 40 milliseconds