Searched defs:encoding (Results 26 - 50 of 341) sorted by relevance

1234567891011>>

/openjdk7/corba/src/share/classes/com/sun/corba/se/pept/encoding/
H A DOutputObject.java26 package com.sun.corba.se.pept.encoding;
35 * the encoding block to be encoded and sent in a message. </p>
43 * encoding.</p>
45 * <p>A particular <em>encoding</em> would subclass
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/encoding/
H A DCorbaOutputObject.java26 package com.sun.corba.se.spi.encoding ;
28 import com.sun.corba.se.pept.encoding.OutputObject ;
34 import com.sun.corba.se.impl.encoding.CDROutputStream ;
35 import com.sun.corba.se.impl.encoding.BufferManagerWrite ;
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DCertificateFactorySpi.java81 * may be supplied in binary or printable (Base64) encoding. If the
82 * certificate is provided in Base64 encoding, it must be bounded at
110 * is assumed to be in the default encoding.
133 * is assumed to be in the specified encoding.
141 * @param encoding the encoding used for the data
145 * the encoding requested is not supported
150 String encoding) throws CertificateException
184 * by this certificate factory, with the default encoding first. See
188 * for information about standard encoding name
149 engineGenerateCertPath(InputStream inStream, String encoding) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tracing/dtrace/
H A DDependencyClass.java69 public int getEncoding() { return encoding; }
71 private int encoding; field in class:DependencyClass
73 private DependencyClass(int encoding) { argument
74 this.encoding = encoding;
H A DStabilityLevel.java80 public int getEncoding() { return encoding; }
82 private int encoding; field in class:StabilityLevel
84 private StabilityLevel(int encoding) { argument
85 this.encoding = encoding;
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DConstructKeys.java53 * Construct a public key from its encoding.
55 * @param encodedKey the encoding of a public key.
105 * Construct a private key from its encoding.
107 * @param encodedKey the encoding of a private key.
157 * Construct a secret key from its encoding.
159 * @param encodedKey the encoding of a secret key.
171 static final Key constructKey(byte[] encoding, String keyAlgorithm, argument
177 result = ConstructKeys.constructSecretKey(encoding,
181 result = ConstructKeys.constructPrivateKey(encoding,
185 result = ConstructKeys.constructPublicKey(encoding,
[all...]
/openjdk7/jaxp/src/org/xml/sax/ext/
H A DLocator2Impl.java53 private String encoding; field in class:Locator2Impl
67 * <em>encoding</em> and <em>version</em>strings are copied,
79 encoding = l2.getEncoding ();
96 * Returns the current value of the encoding property.
101 { return encoding; }
118 * Assigns the current value of the encoding property.
120 * @param encoding the new "encoding" value
123 public void setEncoding (String encoding) argument
124 { this.encoding
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/apt/
H A DOptions.java49 // encoding is not required for JDK5, 6, but JDK 7 javac is much more strict - see issue 6859289
50 public String encoding = null; field in class:Options
88 if (args[i].equals("-encoding")) {
92 encoding = args[++i];
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DContentTypeImpl.java26 package com.sun.xml.internal.ws.encoding;
62 * Returns the character set encoding.
64 * @return returns the character set encoding.
H A DDataHandlerDataSource.java26 package com.sun.xml.internal.ws.encoding;
H A DDataSourceStreamingDataHandler.java26 package com.sun.xml.internal.ws.encoding;
H A DParameterList.java26 package com.sun.xml.internal.ws.encoding;
H A DRootOnlyCodec.java26 package com.sun.xml.internal.ws.encoding;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/fastinfoset/
H A DFastInfosetMIMETypes.java26 package com.sun.xml.internal.ws.encoding.fastinfoset;
H A DFastInfosetStreamReaderRecyclable.java26 package com.sun.xml.internal.ws.encoding.fastinfoset;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/policy/
H A DEncodingConstants.java26 package com.sun.xml.internal.ws.encoding.policy;
31 * File holding all encoding constants
43 public static final String SUN_ENCODING_CLIENT_NS = "http://java.sun.com/xml/ns/wsit/2006/09/policy/encoding/client";
49 public static final String ENCODING_NS = "http://schemas.xmlsoap.org/ws/2004/09/policy/encoding";
H A DEncodingPolicyValidator.java26 package com.sun.xml.internal.ws.encoding.policy;
34 import static com.sun.xml.internal.ws.encoding.policy.EncodingConstants.*;
H A DFastInfosetFeatureConfigurator.java26 package com.sun.xml.internal.ws.encoding.policy;
42 import static com.sun.xml.internal.ws.encoding.policy.EncodingConstants.OPTIMIZED_FI_SERIALIZATION_ASSERTION;
H A DMtomFeatureConfigurator.java26 package com.sun.xml.internal.ws.encoding.policy;
41 import static com.sun.xml.internal.ws.encoding.policy.EncodingConstants.OPTIMIZED_MIME_SERIALIZATION_ASSERTION;
H A DSelectOptimalEncodingFeatureConfigurator.java26 package com.sun.xml.internal.ws.encoding.policy;
42 import static com.sun.xml.internal.ws.encoding.policy.EncodingConstants.SELECT_OPTIMAL_ENCODING_ASSERTION;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/soap/
H A DDeserializationException.java26 package com.sun.xml.internal.ws.encoding.soap;
54 return "com.sun.xml.internal.ws.resources.encoding";
H A DSerializationException.java26 package com.sun.xml.internal.ws.encoding.soap;
53 return "com.sun.xml.internal.ws.resources.encoding";
/openjdk7/jdk/test/java/net/URLConnection/
H A DGetXmlContentType.java104 for (String encoding : encodings) {
105 try (InputStream is = new ByteArrayInputStream(toBOMBytes(encoding))) {
108 System.out.println("Wrong MIME type: " + encoding + " --> " + mime);
117 static byte[] toBOMBytes(String encoding) throws Exception { argument
120 switch (encoding) {
139 bos.write(XML_HEADER.getBytes(encoding));
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DKrbAsReq.java147 byte[] encoding() throws IOException, Asn1Exception { method in class:KrbAsReq
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DAPOptions.java82 public APOptions(DerValue encoding) throws IOException, Asn1Exception { argument
83 this(encoding.getUnalignedBitString(true).toBooleanArray());

Completed in 94 milliseconds

1234567891011>>