Searched defs:encoding (Results 251 - 275 of 341) sorted by relevance

<<11121314

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DWrapperInputStream.java26 package com.sun.corba.se.impl.encoding;
61 import com.sun.corba.se.impl.encoding.OSFCodeSetRegistry;
62 import com.sun.corba.se.impl.encoding.MarshalInputStream;
63 import com.sun.corba.se.impl.encoding.CodeSetConversion;
64 import com.sun.corba.se.impl.encoding.CDRInputStream;
65 import com.sun.corba.se.impl.encoding.CDROutputStream;
/openjdk7/jdk/src/share/classes/sun/font/
H A DFont2D.java458 boolean supportsEncoding(String encoding) { argument
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/signature/
H A DXMLSignatureInput.java173 * Construct a XMLSignatureInput from a String with a given encoding.
179 * @param inputStr the input String with encoding <code>encoding</code>
180 * @param encoding the encoding of <code>inputStr</code>
183 public XMLSignatureInput(String inputStr, String encoding) argument
185 this(inputStr.getBytes(encoding));
/openjdk7/jdk/src/share/classes/com/sun/tools/script/shell/
H A DMain.java67 // current script file encoding selected
135 } else if (arg.equals("-encoding")) {
192 * @param encoding script file encoding
196 final String encoding) {
200 processSource(se, fileName, encoding);
245 * @param encoding script file encoding, can be null
248 String encoding) {
285 evaluateStream(se, fis, filename, encoding);
194 addFileSource(final ScriptEngine se, final String fileName, final String encoding) argument
247 processSource(ScriptEngine se, String filename, String encoding) argument
352 evaluateStream(ScriptEngine se, InputStream is, String name, String encoding) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DMimeBodyPart.java65 * in certain portions of certain headers, by encoding those characters.
265 * encoding of the content. <p>
306 * encoding of the content. <p>
415 * Returns the content transfer encoding from the
439 // Tokenize the header to obtain the encoding (skip comments)
594 * description contains only US-ASCII characters, no encoding
597 * Note that if the charset encoding process fails, a
621 * contains only US-ASCII characters, no encoding is done and
624 * Note that if the charset encoding process fails, a
630 * @param charset Charset for encoding
1154 setEncoding(String encoding) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/output/
H A DXMLWriter.java285 * @param encoding
289 public XMLWriter (Writer writer, String encoding, CharacterEscapeHandler _escapeHandler ) argument
291 init(writer,encoding);
295 public XMLWriter (Writer writer, String encoding ) {
296 this( writer, encoding, DumbEscapeHandler.theInstance );
309 private void init (Writer writer,String encoding) argument
311 setOutput(writer,encoding);
382 encoding = _encoding;
385 public void setEncoding(String encoding) { argument
386 this.encoding
1061 private String encoding; field in class:XMLWriter
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DSOAPBindingCodec.java26 package com.sun.xml.internal.ws.encoding;
61 * This is used when we need to determine the encoding from what we received (for decoding)
62 * and from configuration and {@link Message} contents (for encoding)
78 * Should be used on server-side, for encoding the response.
85 * Used on server-side, for encoding the repsonse.
105 * True if the Fast Infoset codec should be used for encoding.
223 // If the client's FI encoding feature is enabled, and server's is not disabled
290 * Reset the encoding state.
464 * Determines the encoding codec.
494 //On client, always use XOP encoding i
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/xml/
H A DXMLMessage.java26 package com.sun.xml.internal.ws.encoding.xml;
37 import com.sun.xml.internal.ws.encoding.ContentType;
38 import com.sun.xml.internal.ws.encoding.MimeMultipartParser;
39 import com.sun.xml.internal.ws.encoding.XMLHTTPBindingCodec;
/openjdk7/jdk/src/solaris/native/com/sun/media/sound/
H A DPLATFORM_API_SolarisOS_PCM.c141 DAUDIO_PCM, /* encoding - let's only do PCM */
172 int encoding, float sampleRate, int sampleSizeInBits,
181 if (encoding != DAUDIO_PCM) {
182 ERROR1(" DAUDIO_Open: invalid encoding %d\n", (int) encoding);
232 info->info.play.encoding = AUDIO_ENCODING_LINEAR;
239 info->info.record.encoding = AUDIO_ENCODING_LINEAR;
171 DAUDIO_Open(INT32 mixerIndex, INT32 deviceID, int isSource, int encoding, float sampleRate, int sampleSizeInBits, int frameSize, int channels, int isSigned, int isBigEndian, int bufferSizeInBytes) argument
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dmulti_font.c483 * Find the character encoding for a given font and register that encoding
484 * with the given tag. The encoding is the last two fields of the XLFD of
495 char *encoding = strdup(++e); local
498 for (u = encoding; *u != '\0'; ++u) {
511 if (strncmp(encoding, "SUN-", 4) == 0) {
512 free(encoding);
513 encoding = strdup("ISO8859-1");
515 ret = XmRegisterSegmentEncoding(tag, encoding);
518 free(encoding);
[all...]
/openjdk7/jdk/src/windows/classes/sun/security/mscapi/
H A DKeyStore.java166 byte[] encoding = chain[i].getEncoded();
168 storeCertificate(getName(), alias, encoding,
169 encoding.length, privateKey.getHCryptProvider(),
173 storeCertificate(getName(), alias, encoding,
174 encoding.length, 0L, 0L); // no private key to attach
183 * Used to create an X.509 certificate from its DER-encoding.
541 byte[] encoding = certChain[0].getEncoded();
542 removeCertificate(getName(), alias, encoding,
543 encoding.length);
889 * @param encoding DE
891 storeCertificate(String name, String alias, byte[] encoding, int encodingLength, long hCryptProvider, long hCryptKey) argument
902 removeCertificate(String name, String alias, byte[] encoding, int encodingLength) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_DataTransferer.cpp191 const char *encoding = getEncodingFromLangID(langID); local
196 // We assume that the encoding name length cannot exceed INT_MAX.
197 jsize length = (jsize)strlen(encoding);
203 env->SetByteArrayRegion(retval, 0, length, (jbyte *)encoding);
204 free((void *)encoding);
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DClassReader.java41 + "-encoding: +> = \n"
61 props.put("-encoding:", "UTF8"); // default
69 String encoding = props.get("-encoding:");
96 BufferedReader files = makeReader(fin, encoding);
98 doFile(file, source, dest, options, encoding, contError);
108 doJar(a, source, dest, options, encoding, contError);
110 doFile(a, source, dest, options, encoding, contError);
121 ClassReader options, String encoding,
124 doFile(a, source, dest, options, encoding);
119 doFile(String a, File source, File dest, ClassReader options, String encoding, boolean contError) argument
134 doJar(String a, File source, File dest, ClassReader options, String encoding, Boolean contError) argument
154 doStream(String a, InputStream in, File dest, ClassReader options, String encoding) argument
191 doFile(String a, File source, File dest, ClassReader options, String encoding) argument
205 makeReader(InputStream in, String encoding) argument
229 makeWriter(OutputStream out, String encoding) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/
H A DConfiguration.java147 * Encoding for this document. Default is default encoding for this
158 * Encoding for this document. Default is default encoding for this
161 public String encoding = null; field in class:Configuration
315 option.equals("-encoding") ||
371 } else if (opt.equals("-encoding")) {
372 encoding = os[1];
433 docencoding = encoding;
538 String encoding = "";
566 } else if (opt.equals("-encoding")) {
567 encoding
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DDocEnv.java81 /** The encoding name. */
82 private String encoding; field in class:DocEnv
727 * Set the encoding.
729 public void setEncoding(String encoding) { argument
730 this.encoding = encoding;
734 * Get the encoding.
737 return encoding;
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11RSACipher.java424 ("wrap() failed, no encoding available", ike);
426 // Directly encrypt the key encoding when key conversion failed
505 * Construct a public key from its encoding.
507 * @param encodedKey the encoding of a public key.
532 * Construct a private key from its encoding.
534 * @param encodedKey the encoding of a private key.
559 * Construct a secret key from its encoding.
561 * @param encodedKey the encoding of a secret key.
572 static final Key constructKey(byte[] encoding, String keyAlgorithm, argument
576 return constructSecretKey(encoding, keyAlgorith
[all...]
/openjdk7/jdk/src/share/classes/sun/launcher/
H A DLauncherHelper.java513 private static final String encprop = "sun.jnu.encoding";
514 private static String encoding = null; field in class:LauncherHelper
523 if (encoding == null) {
524 encoding = System.getProperty(encprop);
525 isCharsetSupported = Charset.isSupported(encoding);
529 ? new String(inArray, encoding)
/openjdk7/jdk/src/solaris/classes/sun/print/
H A DUnixPrintService.java75 /* define doc flavors for text types in the default encoding of
78 private static String encoding = "ISO8859_1"; field in class:UnixPrintService
145 encoding = java.security.AccessController.doPrivileged(
146 new sun.security.action.GetPropertyAction("file.encoding"));
508 // copy host encoding flavors
/openjdk7/langtools/test/tools/javac/tree/
H A DTreePosTest.java141 if (arg.equals("-encoding") && i + 1 < args.length)
142 encoding = args[++i];
304 /** Option: encoding for test files. */
305 String encoding; field in class:TreePosTest
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DTransformerImpl.java129 * The output encoding of this transformation.
383 // Get encoding using getProperty() to use defaults
710 String encoding) throws TransformerException
709 transform(Source source, SerializationHandler handler, String encoding) argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLDocumentScannerImpl.java518 * @param encoding The auto-detected IANA encoding name of the entity
520 * where the entity encoding is not auto-detected (e.g.
528 String encoding, Augmentations augs) throws XNIException {
530 super.startEntity(name, identifier, encoding,augs);
546 fDocumentHandler.startDocument(fEntityScanner, encoding, fNamespaceContext, null);
526 startEntity(String name, XMLResourceIdentifier identifier, String encoding, Augmentations augs) argument
H A DXMLEntityScanner.java100 * Allow Java encoding names. This feature identifier is:
376 * Returns the encoding of the current entity.
378 * considered final once the encoding declaration has been read (or once it
379 * has been determined that there is no such declaration) since, no encoding
385 return fCurrentEntity.encoding;
391 * Sets the encoding of the scanner. This method is used by the
392 * scanners if the XMLDecl or TextDecl line contains an encoding
396 * current entity will be changed to accomodate the new encoding.
397 * However, the new encoding is ignored if the current reader was
402 * @param encoding Th
408 setEncoding(String encoding) argument
1812 createReader(InputStream inputStream, String encoding, Boolean isBigEndian) argument
[all...]
H A DXMLScanner.java187 /** Symbol: "encoding". */
188 protected final static String fEncodingSymbol = "encoding".intern();
369 * [80] EncodingDecl ::= S 'encoding' Eq ('"' EncName '"' | "'" EncName "'" )
381 * encoding and standalone pseudo attribute values
393 String encoding = null;
452 encoding = fString.toString();
471 encoding = fString.toString();
473 // TODO: check encoding name; set encoding on
521 // for version or encoding inf
1149 startEntity(String name, XMLResourceIdentifier identifier, String encoding, Augmentations augs) argument
[all...]
H A DXMLStreamReaderImpl.java155 * @param encoding
159 public XMLStreamReaderImpl(InputStream inputStream, String encoding, PropertyManager props ) throws XMLStreamException { argument
162 XMLInputSource inputSource = new XMLInputSource(null,null,null, new BufferedInputStream(inputStream),encoding );
286 /** Returns the character encoding declared on the xml declaration Returns null if none was declared
287 * @return the encoding declared in the document or null
302 /** Return input encoding if known or null if unknown.
303 * @return the encoding of this instance or null
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DDefaultXMLDocumentHandler.java67 * @param encoding The auto-detected IANA encoding name of the entity
69 * where the entity encoding is not auto-detected (e.g.
76 public void startDocument(XMLLocator locator, String encoding, argument
87 * @param encoding The IANA encoding name of the document, or null if
95 public void xmlDecl(String version, String encoding, String standalone, Augmentations augs) argument
202 * @param encoding The auto-detected IANA encoding name of the entity
204 * where the entity encoding i
211 startGeneralEntity(String name, XMLResourceIdentifier identifier, String encoding, Augmentations augs) argument
235 textDecl(String version, String encoding, Augmentations augs) argument
378 startParameterEntity(String name, XMLResourceIdentifier identifier, String encoding, Augmentations augmentations) argument
[all...]

Completed in 91 milliseconds

<<11121314