Searched defs:charset (Results 51 - 60 of 60) sorted by relevance

123

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DXSLTC.java301 * @param charset The value of the charset attribute to match. May be null.
303 public void setPIParameters(String media, String title, String charset) { argument
304 _parser.setPIParameters(media, title, charset);
/openjdk7/jdk/src/share/classes/java/util/
H A DScanner.java35 import java.nio.charset.*;
603 * {@linkplain java.nio.charset.Charset#defaultCharset() default charset}.
614 * into characters using the specified charset.
628 * Returns a charset object for the given charset name.
630 * @throws IllegalArgumentException if the charset is not supported
642 private static Readable makeReadable(InputStream source, Charset charset) { argument
643 return new InputStreamReader(source, charset);
650 * {@linkplain java.nio.charset
736 Scanner(Path source, Charset charset) argument
[all...]
H A DFormatter.java43 import java.nio.charset.Charset;
44 import java.nio.charset.IllegalCharsetNameException;
45 import java.nio.charset.UnsupportedCharsetException;
1850 * Returns a charset object for the given charset name.
1852 * @throws UnsupportedEncodingException if the charset is not supported
1880 private Formatter(Charset charset, Locale l, File file) argument
1884 new BufferedWriter(new OutputStreamWriter(new FileOutputStream(file), charset)));
1951 * <p> The charset used is the {@linkplain
1952 * java.nio.charset
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/png/
H A DPNGImageReader.java211 private String readNullTerminatedString(String charset, int maxLen) throws IOException { argument
219 return new String(baos.toByteArray(), charset);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/
H A DMessageImpl.java739 return contentType().getParameter("charset");
742 public void setCharset(String charset) { argument
744 ct.setParameter("charset", charset);
828 private void setFinalContentType(String charset) { argument
836 ct.setParameter("charset", charset);
1040 soapPartCtype.setParameter("charset", initCharset());
1110 String charset = null;
1114 charset
[all...]
H A DSOAPPartImpl.java73 // Records the charset encoding of the input stream source if provided.
668 public void setSourceCharsetEncoding(String charset) { argument
669 this.sourceCharsetEncoding = charset;
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/generator/
H A DWrapperGenerator.java28 import java.nio.charset.*;
40 private static Charset charset = Charset.forName("ISO-8859-15"); field in class:WrapperGenerator
/openjdk7/jdk/src/share/classes/sun/awt/datatransfer/
H A DDataTransferer.java57 import java.nio.charset.Charset;
58 import java.nio.charset.CharsetEncoder;
59 import java.nio.charset.IllegalCharsetNameException;
60 import java.nio.charset.UnsupportedCharsetException;
155 * mimeType = "text/plain; charset=Unicode"
192 * Tracks whether a particular text/* MIME type supports the charset
256 ("text/plain;charset=Unicode;class=java.lang.String");
369 * If the specified flavor is a text flavor which supports the "charset"
371 * charset if no such parameter was specified at construction. For non-
372 * text DataFlavors, and for non-charset tex
423 doesSubtypeSupportCharset(String subType, String charset) argument
585 registerTextFlavorProperties(String nat, String charset, String eoln, String terminators) argument
2700 getEncoding(String charset) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dfontpath.c1229 FcCharSet *unionCharset = NULL, *charset; local
1246 FC_CHARSET, 0, &charset);
1269 unionCharset = charset;
1271 if ((*FcCharSetSubtractCount)(charset, unionCharset)
1273 unionCharset = (* FcCharSetUnion)(unionCharset, charset);
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Component.cpp3609 MsgRouting AwtComponent::WmInputLangChange(UINT charset, HKL hKeyboardLayout) argument
3611 // Normally we would be able to use charset and TranslateCharSetInfo
3614 // with the WM_INPUTLANGCHANGE message, which makes the charset parameter

Completed in 2602 milliseconds

123