Searched defs:encoding (Results 76 - 100 of 341) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/java/security/cert/
H A DCertificateFactory.java313 * may be supplied in binary or printable (Base64) encoding. If the
314 * certificate is provided in Base64 encoding, it must be bounded at
344 * by this certificate factory, with the default encoding first. See
348 * for information about standard encoding names and their formats.
365 * is assumed to be in the default encoding. The name of the default
366 * encoding is the first element of the <code>Iterator</code> returned by
384 * is assumed to be in the specified encoding. See
388 * for information about standard encoding names and their formats.
391 * @param encoding the encoding use
398 generateCertPath(InputStream inStream, String encoding) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DStreamHandler.java53 * <li> java.util.logging.StreamHandler.encoding
54 * the name of the character set encoding to use (defaults to
55 * the default platform encoding).
78 setEncoding(manager.getStringProperty(cname +".encoding", null));
131 String encoding = getEncoding();
132 if (encoding == null) {
136 writer = new OutputStreamWriter(output, encoding);
139 // should have validated that the encoding is OK.
146 * Set (or change) the character encoding used by this <tt>Handler</tt>.
148 * The encoding shoul
158 setEncoding(String encoding) argument
[all...]
/openjdk7/hotspot/src/cpu/zero/vm/
H A Dregister_zero.hpp39 inline Register as_Register(int encoding) { argument
40 return (Register)(intptr_t) encoding;
51 inline friend Register as_Register(int encoding);
56 return as_Register(encoding() + 1);
60 int encoding() const { function in class:RegisterImpl
74 inline FloatRegister as_FloatRegister(int encoding) { argument
75 return (FloatRegister)(intptr_t) encoding;
86 inline friend FloatRegister as_FloatRegister(int encoding);
91 return as_FloatRegister(encoding() + 1);
95 int encoding() cons function in class:FloatRegisterImpl
[all...]
/openjdk7/jaxp/src/org/w3c/dom/ls/
H A DLSOutput.java48 * stream (possibly with a specified encoding), a base URI, and/or a
117 * The character encoding to use for the output. The encoding must be a
118 * string acceptable for an XML encoding declaration ([<a href='http://www.w3.org/TR/2004/REC-xml-20040204'>XML 1.0</a>] section
126 * The character encoding to use for the output. The encoding must be a
127 * string acceptable for an XML encoding declaration ([<a href='http://www.w3.org/TR/2004/REC-xml-20040204'>XML 1.0</a>] section
133 public void setEncoding(String encoding); argument
/openjdk7/jaxp/src/org/xml/sax/
H A DInputSource.java49 * with a specified encoding), and/or a character stream.</p>
59 * encoding declaration found in that stream.
62 * encoding specified in the InputSource or else (if no encoding is
63 * specified) autodetecting the character encoding using an algorithm
105 * the character encoding, if known.</p>
129 * character encoding.</p>
204 * <p>If the application knows the character encoding of the
206 * the encoding using the setEncoding method.</p>
226 * <p>The getEncoding method will return the character encoding
295 setEncoding(String encoding) argument
355 private String encoding; field in class:InputSource
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/factory/
H A DStAXOutputFactory.java67 public XMLEventWriter createXMLEventWriter(OutputStream outputStream, String encoding) throws XMLStreamException { argument
68 return new StAXEventWriter(createXMLStreamWriter(outputStream, encoding));
110 public XMLStreamWriter createXMLStreamWriter(OutputStream outputStream, String encoding) throws XMLStreamException { argument
112 serializer.setEncoding(encoding);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DContentType.java32 package com.sun.xml.internal.ws.encoding;
H A DImageDataContentHandler.java26 package com.sun.xml.internal.ws.encoding;
H A DStreamSOAP11Codec.java26 package com.sun.xml.internal.ws.encoding;
H A DStringDataContentHandler.java26 package com.sun.xml.internal.ws.encoding;
H A DSwACodec.java26 package com.sun.xml.internal.ws.encoding;
H A DXmlDataContentHandler.java26 package com.sun.xml.internal.ws.encoding;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/fastinfoset/
H A DFastInfosetStreamReaderFactory.java26 package com.sun.xml.internal.ws.encoding.fastinfoset;
H A DFastInfosetStreamSOAP11Codec.java26 package com.sun.xml.internal.ws.encoding.fastinfoset;
32 import com.sun.xml.internal.ws.encoding.ContentTypeImpl;
H A DFastInfosetStreamSOAP12Codec.java26 package com.sun.xml.internal.ws.encoding.fastinfoset;
32 import com.sun.xml.internal.ws.encoding.ContentTypeImpl;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/policy/
H A DMtomPolicyMapConfigurator.java26 package com.sun.xml.internal.ws.encoding.policy;
28 import static com.sun.xml.internal.ws.encoding.policy.EncodingConstants.OPTIMIZED_MIME_SERIALIZATION_ASSERTION;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/soap/
H A DSerializerConstants.java26 package com.sun.xml.internal.ws.encoding.soap;
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DAPReq.java80 public APReq(DerValue encoding) throws Asn1Exception, IOException, KrbApErrException, RealmException { argument
81 init(encoding);
86 * @param encoding a single DER-encoded value.
92 private void init(DerValue encoding) throws Asn1Exception, argument
95 if (((encoding.getTag() & (byte) 0x1F) != Krb5.KRB_AP_REQ)
96 || (encoding.isApplication() != true)
97 || (encoding.isConstructed() != true)) {
100 der = encoding.getData().getDerValue();
H A DETypeInfo2.java80 * @param encoding a DER-encoded data.
85 public ETypeInfo2(DerValue encoding) throws Asn1Exception, IOException { argument
88 if (encoding.getTag() != DerValue.tag_Sequence) {
93 der = encoding.getData().getDerValue();
101 if (encoding.getData().available() > 0) {
102 if ((encoding.getData().peekByte() & 0x1F) == 0x01) {
103 der = encoding.getData().getDerValue();
110 if (encoding.getData().available() > 0) {
111 if ((encoding.getData().peekByte() & 0x1F) == 0x02) {
112 der = encoding
[all...]
H A DEncAPRepPart.java80 public EncAPRepPart(DerValue encoding) argument
82 init(encoding);
87 * @param encoding a single DER-encoded value.
91 private void init(DerValue encoding) throws Asn1Exception, IOException { argument
93 if (((encoding.getTag() & (byte) 0x1F) != (byte) 0x1B)
94 || (encoding.isApplication() != true)
95 || (encoding.isConstructed() != true)) {
98 der = encoding.getData().getDerValue();
H A DKDCReq.java106 * Initializes a KDCReq object from a DerValue. The DER encoding
109 * @param encoding a DER-encoded KDCReq object.
116 protected void init(DerValue encoding, int req_type) throws Asn1Exception, argument
120 if ((encoding.getTag() & 0x1F) != req_type) {
123 der = encoding.getData().getDerValue();
H A DTicket.java95 public Ticket(DerValue encoding) throws Asn1Exception, argument
97 init(encoding);
102 * @param encoding a single DER-encoded value.
109 private void init(DerValue encoding) throws Asn1Exception, argument
113 if (((encoding.getTag() & (byte)0x1F) != Krb5.KRB_TKT)
114 || (encoding.isApplication() != true)
115 || (encoding.isConstructed() != true))
117 der = encoding.getData().getDerValue();
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DDistributionPointName.java127 * @param encoding the DER-encoded value.
130 public DistributionPointName(DerValue encoding) throws IOException { argument
132 if (encoding.isContextSpecific(TAG_FULL_NAME) &&
133 encoding.isConstructed()) {
135 encoding.resetTag(DerValue.tag_Sequence);
136 fullName = new GeneralNames(encoding);
138 } else if (encoding.isContextSpecific(TAG_RELATIVE_NAME) &&
139 encoding.isConstructed()) {
141 encoding.resetTag(DerValue.tag_Set);
142 relativeName = new RDN(encoding);
[all...]
/openjdk7/jdk/test/java/util/Locale/
H A DInternationalBAT.java231 String encoding = requiredEncodings[i];
238 byte[] out = requiredLocaleDates[index].getBytes(encoding);
241 reportConversionError(encoding, expected, out);
246 reportConversionError(encoding, expected, out);
253 System.out.println("Encoding not available: " + encoding);
260 private static void reportConversionError(String encoding, argument
263 System.out.println("Incorrect conversion for encoding: " + encoding);
/openjdk7/jdk/src/solaris/classes/sun/font/
H A DXMap.java51 static synchronized XMap getXMapper(String encoding) { argument
52 XMap mapper = (XMap)xMappers.get(encoding);
54 mapper = getXMapperInternal(encoding);
55 xMappers.put(encoding, mapper);
63 private static XMap getXMapperInternal(String encoding) { argument
71 if (encoding.equals("dingbats")) {
75 } else if (encoding.equals("symbol")){
79 } else if (encoding.equals("iso8859-1")) {
81 } else if (encoding.equals("iso8859-2")) {
83 } else if (encoding
[all...]

Completed in 126 milliseconds

1234567891011>>