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

123

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DStylesheetPIHandler.java99 * @param charset The desired character set criteria.
102 String charset)
108 m_charset = charset;
152 String charset = null; // CDATA #IMPLIED
246 else if (name.equals("charset"))
252 charset = token.substring(1, token.length() - 1);
283 if (null != charset)
285 if (!charset.equals(m_charset))
101 StylesheetPIHandler(String baseID, String media, String title, String charset) argument
/openjdk7/jdk/src/share/classes/java/nio/charset/
H A DCoderResult.java26 package java.nio.charset;
37 * <p> A charset coder, that is, either a decoder or an encoder, consumes bytes
65 * output charset. Such errors are described by instances of this class
H A DCharset.java26 package java.nio.charset;
30 import java.nio.charset.spi.CharsetProvider;
55 * for retrieving the various names associated with a charset. Instances of
59 * charset is supported, for locating charset instances by name, and for
60 * constructing a map that contains every charset for which support is
63 * java.nio.charset.spi.CharsetProvider} class.
102 * A charset name must begin with either a letter or a digit. The empty string
103 * is not a legal charset name. Charset names are not case-sensitive; that is,
104 * case is always ignored when comparing charset name
[all...]
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DZipInputStream.java32 import java.nio.charset.Charset;
33 import java.nio.charset.StandardCharsets;
73 * <p>The UTF-8 {@link java.nio.charset.Charset charset} is used to
87 * @param charset
88 * The {@linkplain java.nio.charset.Charset charset} to be
96 public ZipInputStream(InputStream in, Charset charset) { argument
102 if (charset == null)
103 throw new NullPointerException("charset i
[all...]
H A DZipOutputStream.java30 import java.nio.charset.Charset;
31 import java.nio.charset.StandardCharsets;
98 * <p>The UTF-8 {@link java.nio.charset.Charset charset} is used
112 * @param charset the {@linkplain java.nio.charset.Charset charset}
117 public ZipOutputStream(OutputStream out, Charset charset) { argument
119 if (charset == null)
120 throw new NullPointerException("charset i
[all...]
H A DZipFile.java33 import java.nio.charset.Charset;
34 import java.nio.charset.StandardCharsets;
104 * <p>The UTF-8 {@link java.nio.charset.Charset charset} is used to
128 * <p>The UTF-8 {@link java.nio.charset.Charset charset} is used to
151 * <p>The UTF-8 {@link java.nio.charset.Charset charset} is used to
175 * @param charset
176 * the {@linkplain java.nio.charset
196 ZipFile(File file, int mode, Charset charset) argument
247 ZipFile(String name, Charset charset) argument
267 ZipFile(File file, Charset charset) argument
[all...]
/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLLinkElement.java61 * charset attribute definition in HTML 4.0.
64 public void setCharset(String charset); argument
H A DHTMLAnchorElement.java57 * The character encoding of the linked resource. See the charset
61 public void setCharset(String charset); argument
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWFontConfiguration.java35 import java.nio.charset.*;
148 * Returns the component font name (face name plus charset) of the
160 private String findFontWithCharset(FontDescriptor[] fontDescriptors, String charset) { argument
164 if (componentFontName.endsWith(charset)) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DJavacTool.java34 import java.nio.charset.Charset;
147 Charset charset) {
152 PrintWriter pw = (charset == null)
154 : new PrintWriter(new OutputStreamWriter(System.err, charset), true);
156 return new JavacFileManager(context, true, charset);
144 getStandardFileManager( DiagnosticListener<? super JavaFileObject> diagnosticListener, Locale locale, Charset charset) argument
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DSmartTransformerFactoryImpl.java250 String title, String charset)
257 title, charset);
249 getAssociatedStylesheet(Source source, String media, String title, String charset) argument
H A DTransformerFactoryImpl.java161 public PIParamWrapper(String media, String title, String charset) { argument
164 _charset = charset;
587 * @param charset The value of the charset attribute to match. May be null.
592 String title, String charset)
603 StylesheetPIHandler _stylesheetPIHandler = new StylesheetPIHandler(null,media,title,charset);
591 getAssociatedStylesheet(Source source, String media, String title, String charset) argument
/openjdk7/jdk/src/share/classes/java/beans/
H A DXMLEncoder.java30 import java.nio.charset.Charset;
31 import java.nio.charset.CharsetEncoder;
32 import java.nio.charset.IllegalCharsetNameException;
33 import java.nio.charset.UnsupportedCharsetException;
210 private final String charset; field in class:XMLEncoder
247 * to the stream <code>out</code> using the given <code>charset</code>
252 * @param charset the name of the requested charset;
260 * if <code>out</code> or <code>charset</code> is <code>null</code>,
264 * if <code>charset</cod
277 XMLEncoder(OutputStream out, String charset, boolean declaration, int indentation) argument
[all...]
/openjdk7/jdk/src/share/classes/java/io/
H A DPrintStream.java30 import java.nio.charset.Charset;
31 import java.nio.charset.IllegalCharsetNameException;
32 import java.nio.charset.UnsupportedCharsetException;
84 * Returns a charset object for the given charset name.
86 * @throws UnsupportedEncodingException if the charset is not supported
108 private PrintStream(boolean autoFlush, OutputStream out, Charset charset) { argument
111 this.charOut = new OutputStreamWriter(this, charset);
115 /* Variant of the private constructor so that the given charset name
118 * charset nam
120 PrintStream(boolean autoFlush, Charset charset, OutputStream out) argument
[all...]
H A DPrintWriter.java31 import java.nio.charset.Charset;
32 import java.nio.charset.IllegalCharsetNameException;
33 import java.nio.charset.UnsupportedCharsetException;
78 * Returns a charset object for the given charset name.
80 * @throws UnsupportedEncodingException if the charset is not supported
161 * java.nio.charset.Charset#defaultCharset() default charset} for this
189 private PrintWriter(Charset charset, File file) argument
192 this(new BufferedWriter(new OutputStreamWriter(new FileOutputStream(file), charset)),
[all...]
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/digest/
H A DDigestMD5Client.java117 "charset", // atmost once; default is ISO 8859-1
218 /* Get realm, qop, maxbuf, charset, algorithm, cipher, nonce
286 "violation. Unrecognised charset value: " +
570 private byte[] generateClientResponse(byte[] charset) throws IOException { argument
575 digestResp.write("charset=".getBytes(encoding));
576 digestResp.write(charset);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/impl/
H A DEnvelopeImpl.java59 String charset = "utf-8"; field in class:EnvelopeImpl
252 charset = value;
266 charset);
270 charset + "\" ?>";
275 OutputStreamWriter writer = new OutputStreamWriter(out, charset);
289 new String[] { charset });
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DBaseFileManager.java44 import java.nio.charset.Charset;
45 import java.nio.charset.CharsetDecoder;
46 import java.nio.charset.CoderResult;
47 import java.nio.charset.CodingErrorAction;
48 import java.nio.charset.IllegalCharsetNameException;
49 import java.nio.charset.UnsupportedCharsetException;
63 protected BaseFileManager(Charset charset) { argument
64 this.charset = charset;
83 * User provided charset (throug
85 protected Charset charset; field in class:BaseFileManager
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DMimeBodyPart.java346 * with <strong>"text/plain; charset=foobar"</strong>. <p>
593 * be encoded using the platform's default charset. If the
597 * Note that if the charset encoding process fails, a
607 * in the exception chain if the charset
620 * be encoded using the specified charset. If the description
624 * Note that if the charset encoding process fails, a
630 * @param charset Charset for encoding
635 * in the exception chain if the charset
638 public void setDescription(String description, String charset) argument
647 MimeUtility.encodeText(description, charset, nul
903 setText(String text, String charset) argument
[all...]
H A DMimeUtility.java63 * yet a widely used charset, one might want to first charset-encode
64 * the String into another charset and then do the transfer-encoding.
108 * In addition, the <code>mail.mime.charset</code> System property can
109 * be used to specify the default MIME charset to use for encoded words
110 * and text parts that don't otherwise specify a charset. Normally, the
111 * default MIME charset is derived from the default Java charset, as
114 * charset. In cases where the default MIME charset t
450 encodeText(String text, String charset, String encoding) argument
603 encodeWord(String word, String charset, String encoding) argument
616 encodeWord(String string, String charset, String encoding, boolean encodingWord) argument
1049 javaCharset(String charset) argument
1071 mimeCharset(String charset) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/
H A DConfiguration.java104 * The META charset tag used for cross-platform viewing.
106 public String charset = ""; field in class:Configuration
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/nio/
H A DJavacPathFileManager.java34 import java.nio.charset.Charset;
115 public JavacPathFileManager(Context context, boolean register, Charset charset) { argument
116 super(charset);
/openjdk7/jdk/src/share/classes/java/lang/
H A DString.java29 import java.nio.charset.Charset;
104 * @see java.nio.charset.Charset
287 * java.nio.charset.Charset}, charset name, or that use the platform's
288 * default charset.
306 * @see #String(byte[], int, int, java.nio.charset.Charset)
309 * @see #String(byte[], java.nio.charset.Charset)
344 * java.nio.charset.Charset}, charset name, or that use the platform's
345 * default charset
449 String(byte bytes[], int offset, int length, Charset charset) argument
504 String(byte bytes[], Charset charset) argument
937 getBytes(Charset charset) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DJavacFileManager.java39 import java.nio.charset.Charset;
144 public JavacFileManager(Context context, boolean register, Charset charset) { argument
145 super(charset);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DParser.java520 * @param charset The value of the charset attribute to match. May be null.
522 protected void setPIParameters(String media, String title, String charset) { argument
525 _PIcharset = charset;
1380 String charset = null; // Charset of stylesheet found
1392 else if (token.startsWith("charset"))
1393 charset = getTokenValue(token);
1400 ((_PIcharset == null) || (_PImedia.equals(charset))) ) {

Completed in 197 milliseconds

123