Searched refs:encode (Results 251 - 275 of 308) sorted by relevance

<<111213

/openjdk7/jdk/test/sun/nio/cs/
H A DFindOneCharEncoderBugs.java75 .encode(cb);
H A DFindEncoderBugs.java336 CoderResult cr = coder.encode(ib, ob, false);
356 CoderResult cr2 = coder.encode(ib, ob, false);
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DISO_8859_1.java222 public int encode(char[] src, int sp, int len, byte[] dst) { method in class:ISO_8859_1.Encoder
H A DUS_ASCII.java241 public int encode(char[] src, int sp, int len, byte[] dst) { method in class:US_ASCII.Encoder
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DSimpleEUCEncoder.java272 public byte encode(char inputChar) { method in class:SimpleEUCEncoder
H A DEUC_JP.java272 if ((b = encoderJ0201.encode(inputChar)) == 0)
/openjdk7/jdk/src/share/classes/java/nio/charset/
H A DCharset-X-Coder.java.template892 encode(cb);
904 * Tells whether or not this encoder can encode the given character.
920 * @return <tt>true</tt> if, and only if, this encoder can encode
934 * Tells whether or not this encoder can encode the given character
948 * @return <tt>true</tt> if, and only if, this encoder can encode
/openjdk7/hotspot/src/share/vm/adlc/
H A Dformsopt.cpp187 RegDef::RegDef(char *regname, char *callconv, char *c_conv, char * idealtype, char * encode, char * concrete) argument
190 _register_encode(encode),
219 fprintf(fp,"RegDef: %s (%s) encode as %s using number %d\n",
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DMimeBodyPart.java960 OutputStream wos = MimeUtility.encode(os, getEncoding());
965 OutputStream wos = MimeUtility.encode(os, getEncoding());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DMtomCodec.java138 public ContentType encode(Packet packet, OutputStream out) throws IOException { method in class:MtomCodec
172 //now create the boundary for next encode() call
216 public ContentType encode(Packet packet, WritableByteChannel buffer) { method in class:MtomCodec
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/crypto/dk/
H A DDkCrypto.java682 ByteBuffer bb = utf8.encode(cb);
693 ByteBuffer bb = utf8.encode(cb);
/openjdk7/jdk/src/share/classes/sun/security/pkcs/
H A DPKCS7.java477 contentInfo.encode(signedData);
540 block.encode(out);
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DAlgorithmId.java145 public final void encode(DerOutputStream out) throws IOException { method in class:AlgorithmId
150 * DER encode this object onto an output stream.
209 public final byte[] encode() throws IOException { method in class:AlgorithmId
H A DIPAddressName.java227 * @params out the DER stream to encode the IPAddressName to.
230 public void encode(DerOutputStream out) throws IOException { method in class:IPAddressName
H A DRDN.java343 void encode(DerOutputStream out) throws IOException { method in class:RDN
H A DX509CertImpl.java330 public void encode(OutputStream out) method in class:X509CertImpl
334 "Null certificate to encode");
343 * DER encode this object onto an output stream.
352 throw new IOException("Null certificate to encode");
376 "Null certificate to encode");
521 // encode certificate info
522 info.encode(tmp);
525 // encode algorithm identifier
526 algId.encode(tmp);
528 // Create and encode th
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DCodeSetConversion.java262 buffer = ctb.encode(CharBuffer.wrap(chars,0,numChars));
/openjdk7/jdk/src/share/classes/sun/awt/
H A DPlatformFont.java308 currentFontDescriptor.unicodeEncoder.encode(CharBuffer.wrap(input),
321 currentFontDescriptor.encoder.encode(CharBuffer.wrap(input),
/openjdk7/jdk/src/share/classes/java/text/
H A DSimpleDateFormat.java769 encode(lastTag, count, compiledPattern);
783 encode(lastTag, count, compiledPattern);
804 encode(TAG_QUOTE_CHARS, len, compiledPattern);
817 encode(lastTag, count, compiledPattern);
853 encode(lastTag, count, compiledPattern);
863 encode(lastTag, count, compiledPattern);
876 private static final void encode(int tag, int length, StringBuilder buffer) { method in class:SimpleDateFormat
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/algorithms/implementations/
H A DSignatureDSA.java114 log.log(java.util.logging.Level.FINE, "Called DSA.verify() on " + Base64.encode(signature));
H A DSignatureECDSA.java209 log.log(java.util.logging.Level.FINE, "Called ECDSA.verify() on " + Base64.encode(signature));
/openjdk7/jdk/test/java/nio/channels/AsynchronousFileChannel/
H A DLock.java195 ByteBuffer buf = Charset.defaultCharset().encode(cmd);
/openjdk7/jdk/test/java/nio/charset/coders/
H A DBashStreams.java269 bb = enc.encode(cb);
/openjdk7/jdk/src/share/classes/sun/security/jgss/krb5/
H A DInitialToken.java458 public abstract byte[] encode() throws IOException; method in class:InitialToken
/openjdk7/jdk/src/share/classes/sun/net/idn/
H A DPunycode.java170 public static StringBuffer encode(StringBuffer src, boolean[] caseFlags) throws ParseException{ method in class:Punycode

Completed in 77 milliseconds

<<111213