Searched defs:encoding (Results 151 - 175 of 341) sorted by relevance

1234567891011>>

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DCodeSetComponentInfo.java32 package com.sun.corba.se.impl.encoding;
H A DOSFCodeSetRegistry.java25 package com.sun.corba.se.impl.encoding;
51 * to find out the equivalent Java character encoding
72 * Returns the Java equivalent name. If the encoding has
74 * Java encoding that includes the marker.
129 * 8-bit encoding required for GIOP 1.0, and used as the char set
184 * though they didn't necessarily do the correct encoding of it.
199 * This is the encoding older JavaSoft ORBs advertised as their
201 * the Java char. This is a 7-bit encoding, so they
H A DTypeCodeOutputStream.java26 package com.sun.corba.se.impl.encoding;
43 import com.sun.corba.se.impl.encoding.OSFCodeSetRegistry;
44 import com.sun.corba.se.impl.encoding.MarshalInputStream;
46 import com.sun.corba.se.impl.encoding.CodeSetConversion;
48 import com.sun.corba.se.impl.encoding.CDRInputStream;
49 import com.sun.corba.se.impl.encoding.CDROutputStream;
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DAudioFormat.java45 * The <code>AudioFormat</code> class accommodates a number of common sound-file encoding techniques, including
46 * pulse-code modulation (PCM), mu-law encoding, and a-law encoding. These encoding techniques are predefined,
47 * but service providers can create new encoding types.
48 * The encoding that a specific format uses is named by its <code>encoding</code> field.
50 * In addition to the encoding, the audio format includes other properties that further specify the exact
107 * <td>encoding/conversion quality, 1..100</td>
130 * The audio encoding techniqu
132 protected Encoding encoding; field in class:AudioFormat
184 AudioFormat(Encoding encoding, float sampleRate, int sampleSizeInBits, int channels, int frameSize, float frameRate, boolean bigEndian) argument
218 AudioFormat(Encoding encoding, float sampleRate, int sampleSizeInBits, int channels, int frameSize, float frameRate, boolean bigEndian, Map<String, Object> properties) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/applet/
H A DMain.java80 private String encoding = null; field in class:Main
156 AppletViewer.parse((URL) urlList.elementAt(i), encoding);
188 } else if ("-encoding".equals(arg) && (i < argc - 1)) {
189 if (encoding != null)
191 encoding = args[++i];
/openjdk7/jdk/src/share/classes/java/io/
H A DConsole.java369 private static native String encoding(); method in class:Console
558 String csname = encoding();
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DHandler.java55 private String encoding; field in class:Handler
129 * Set the character encoding used by this <tt>Handler</tt>.
131 * The encoding should be set before any <tt>LogRecords</tt> are written
134 * @param encoding The name of a supported character encoding.
135 * May be null, to indicate the default platform encoding.
138 * @exception UnsupportedEncodingException if the named encoding is
141 public void setEncoding(String encoding) argument
144 if (encoding != null) {
146 if(!java.nio.charset.Charset.isSupported(encoding)) {
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/encryption/
H A DEncryptedType.java120 * Retusn an <code>URI</code> representing the encoding of the
123 * @return the encoding of this <code>EncryptedType</code>.
128 * Sets the <code>URI</code> representing the encoding of the
131 * @param encoding.
133 void setEncoding(String encoding); argument
/openjdk7/jaxp/src/org/w3c/dom/ls/
H A DLSInput.java49 * encoding), a base URI, and/or a character stream.
92 * of the encoding attribute will be ignored.
100 * of the encoding attribute will be ignored.
107 * <br> If the application knows the character encoding of the byte
108 * stream, it should set the encoding attribute. Setting the encoding in
109 * this way will override any encoding specified in an XML declaration
116 * <br> If the application knows the character encoding of the byte
117 * stream, it should set the encoding attribute. Setting the encoding i
232 setEncoding(String encoding) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/parser/
H A DLSInputSAXWrapper.java99 public void setEncoding(String encoding) { argument
100 core.setEncoding(encoding);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/marshaller/
H A DDataWriter.java114 * @param encoding
118 public DataWriter ( Writer writer, String encoding, CharacterEscapeHandler _escapeHandler ) argument
120 super(writer,encoding,_escapeHandler);
124 public DataWriter (Writer writer, String encoding ) {
125 this( writer, encoding, DumbEscapeHandler.theInstance );
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/
H A DXmlReader.java45 * don't support, inluding use of IETF standard encoding names and
52 * data streams which have an unknown character encoding. For example,
90 * the encoding to use according to the heuristic specified
94 * @throws IOException on error, such as unrecognized encoding
101 * Creates a reader supporting the given encoding, mapping
102 * from standard encoding names to ones that understood by
106 * @param encoding the IETF standard name of the encoding to use;
108 * @throws IOException on error, including unrecognized encoding
110 public static Reader createReader(InputStream in, String encoding) argument
180 std2java(String encoding) argument
302 useEncodingDecl(PushbackInputStream pb, String encoding) argument
432 setEncoding(InputStream stream, String encoding) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/events/
H A DStartDocumentEvent.java54 public StartDocumentEvent(String encoding){ argument
55 this(encoding, null);
58 public StartDocumentEvent(String encoding, String version){ argument
59 if (encoding != null) {
60 _encoding = encoding;
79 * Returns the encoding style of the XML data
80 * @return the character encoding, defaults to "UTF-8"
87 * the encoding declaration of the document
103 * the encoding declaration of the document.
136 public void setEncoding(String encoding) { argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/factory/
H A DStAXInputFactory.java86 public XMLStreamReader createXMLStreamReader(InputStream inputstream, String encoding) throws XMLStreamException { argument
91 XMLStreamReader getXMLStreamReader(String systemId, InputStream inputstream, String encoding) argument
147 public XMLEventReader createXMLEventReader(java.io.InputStream stream, String encoding) throws XMLStreamException { argument
148 return new StAXEventReader(createXMLStreamReader(stream, encoding));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/output/
H A DDataWriter.java113 * @param encoding
117 public DataWriter ( Writer writer, String encoding, CharacterEscapeHandler _escapeHandler ) argument
119 super(writer,encoding,_escapeHandler);
123 public DataWriter (Writer writer, String encoding ) {
124 this( writer, encoding, DumbEscapeHandler.theInstance );
H A DIndentingXMLStreamWriter.java141 public void writeStartDocument(String encoding, String version) throws XMLStreamException { argument
142 super.writeStartDocument(encoding, version);
H A DStreamSerializer.java55 public StreamSerializer(OutputStream out,String encoding) throws UnsupportedEncodingException { argument
56 this(createWriter(out,encoding));
179 private static XMLWriter createWriter(OutputStream os, String encoding) throws UnsupportedEncodingException { argument
180 XMLWriter writer = createWriter(new OutputStreamWriter(os,encoding));
181 writer.setEncoding(encoding);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/streaming/
H A DXMLStreamWriterFactory.java104 public abstract XMLStreamWriter doCreate(OutputStream out, String encoding); argument
177 public static XMLStreamWriter create(OutputStream out, String encoding) { argument
178 return get().doCreate(out, encoding);
193 public static XMLStreamWriter createXMLStreamWriter(OutputStream out, String encoding) { argument
194 return create(out, encoding);
201 public static XMLStreamWriter createXMLStreamWriter(OutputStream out, String encoding, boolean declare) { argument
202 return create(out,encoding);
224 public synchronized XMLStreamWriter doCreate(OutputStream out, String encoding) { argument
226 return xof.createXMLStreamWriter(out,encoding);
287 public XMLStreamWriter doCreate(OutputStream out, String encoding) { argument
340 doCreate(OutputStream out, String encoding) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DHeaderTokenizer.java26 package com.sun.xml.internal.ws.encoding;
H A DMimeMultipartParser.java26 package com.sun.xml.internal.ws.encoding;
H A DStreamSOAPCodec.java26 package com.sun.xml.internal.ws.encoding;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/fastinfoset/
H A DFastInfosetCodec.java26 package com.sun.xml.internal.ws.encoding.fastinfoset;
38 import com.sun.xml.internal.ws.encoding.ContentTypeImpl;
53 * A codec for encoding/decoding XML infosets to/from fast
259 * Method is copied from com.sun.xml.internal.ws.encoding.xml.XMLMessage
H A DFastInfosetStreamSOAPCodec.java26 package com.sun.xml.internal.ws.encoding.fastinfoset;
37 import com.sun.xml.internal.ws.encoding.ContentTypeImpl;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/soap/
H A DSOAP12Constants.java26 package com.sun.xml.internal.ws.encoding.soap;
28 import com.sun.xml.internal.ws.encoding.soap.streaming.SOAP12NamespaceConstants;
39 public static final String URI_ENCODING = "http://schemas.xmlsoap.org/soap/encoding/";
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/soap/streaming/
H A DSOAP12NamespaceConstants.java26 package com.sun.xml.internal.ws.encoding.soap.streaming;
36 "http://www.w3.org/2003/05/soap-encoding";

Completed in 195 milliseconds

1234567891011>>