Searched defs:decode (Results 76 - 100 of 123) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/java/lang/
H A DShort.java273 * @param nm the {@code String} to decode.
280 public static Short decode(String nm) throws NumberFormatException { method in class:Short
281 int i = Integer.decode(nm);
H A DStringCoding.java147 char[] decode(byte[] ba, int off, int len) { method in class:StringCoding.StringDecoder
153 int clen = ((ArrayDecoder)cd).decode(ba, off, len, ca);
160 CoderResult cr = cd.decode(bb, cb, true);
176 static char[] decode(String charsetName, byte[] ba, int off, int len) method in class:StringCoding
193 return sd.decode(ba, off, len);
196 static char[] decode(Charset cs, byte[] ba, int off, int len) { method in class:StringCoding
229 int clen = ((ArrayDecoder)cd).decode(ba, off, len, ca);
235 CoderResult cr = cd.decode(bb, cb, true);
250 static char[] decode(byte[] ba, int off, int len) { method in class:StringCoding
253 // use charset name decode() varian
[all...]
H A DInteger.java854 * integer value, as per the {@code Integer.decode} method,
882 * @see java.lang.Integer#decode
893 return Integer.decode(v);
935 * @param nm the {@code String} to decode.
942 public static Integer decode(String nm) throws NumberFormatException { method in class:Integer
H A DLong.java615 * @param nm the {@code String} to decode.
623 public static Long decode(String nm) throws NumberFormatException { method in class:Long
887 * {@code Long.decode} method, and a {@code Long} object
921 * @see java.lang.Long#decode
932 return Long.decode(v);
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/internal/
H A DSnmpMsgProcessingModel.java47 * @param factory The pdu factory to use to encode and decode pdu.
53 * @param factory The pdu factory to use to encode and decode pdu.
60 * @param factory The pdu factory to use to encode and decode pdu.
125 public SnmpDecryptedPdu decode(byte[] pdu) throws SnmpStatusException; method in interface:SnmpMsgProcessingModel
H A DSnmpMsgProcessingSubSystem.java60 * @param factory The pdu factory to use to encode and decode pdu.
69 * @param factory The pdu factory to use to encode and decode pdu.
85 * @param factory The pdu factory to use to decode pdu.
147 public SnmpDecryptedPdu decode(int version, method in interface:SnmpMsgProcessingSubSystem
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DHeader.java71 decode(msg, msgLen);
78 private void decode(byte[] msg, int msgLen) throws NamingException { method in class:Header
/openjdk7/hotspot/src/os/bsd/vm/
H A Ddecoder_machO.cpp51 bool MachODecoder::decode(address addr, char *buf, function in class:MachODecoder
/openjdk7/hotspot/test/compiler/7184394/
H A DTestAESBase.java49 byte[] decode; field in class:TestAESBase
106 // do one encode and decode in preparation
107 // this will also create the encode buffer and decode buffer
109 decode = dCipher.doFinal(encode);
112 expectedDecode = (byte[]) decode.clone();
116 showArray(decode, "decode: ");
/openjdk7/hotspot/src/share/vm/utilities/
H A Ddecoder.hpp46 // decode an pc address to corresponding function name and an offset from the beginning of
48 virtual bool decode(address pc, char* buf, int buflen, int* offset,
50 virtual bool decode(address pc, char* buf, int buflen, int* offset, const void* base) = 0;
54 // if the decoder can decode symbols in vm
82 virtual bool decode(address pc, char* buf, int buflen, int* offset, function in class:NullDecoder
87 virtual bool decode(address pc, char* buf, int buflen, int* offset, const void* base) { function in class:NullDecoder
103 static bool decode(address pc, char* buf, int buflen, int* offset, const char* modulepath = NULL);
104 static bool decode(address pc, char* buf, int buflen, int* offset, const void* base);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/util/
H A DUUDecoderStream.java84 if (!decode())
166 private boolean decode() throws IOException { method in class:UUDecoderStream
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DStreamSOAPCodec.java117 public void decode(InputStream in, String contentType, Packet packet) throws IOException { method in class:StreamSOAPCodec
118 decode(in, contentType, packet, new AttachmentSetImpl());
145 public final @NotNull Message decode(@NotNull XMLStreamReader reader) { method in class:StreamSOAPCodec
146 return decode(reader,new AttachmentSetImpl());
160 public final Message decode(XMLStreamReader reader, @NotNull AttachmentSet attachmentSet) { method in class:StreamSOAPCodec
226 public void decode(ReadableByteChannel in, String contentType, Packet packet ) { method in class:StreamSOAPCodec
281 public void decode(InputStream in, String contentType, Packet packet, AttachmentSet att ) throws IOException { method in class:StreamSOAPCodec
292 packet.setMessage(decode(reader, att));
295 public void decode(ReadableByteChannel in, String contentType, Packet response, AttachmentSet att ) { method in class:StreamSOAPCodec
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/fastinfoset/
H A DFastInfosetCodec.java110 public void decode(InputStream in, String contentType, Packet packet) throws IOException { method in class:FastInfosetCodec
125 public void decode(ReadableByteChannel in, String contentType, Packet response) { method in class:FastInfosetCodec
160 * vocabulary tables for multiple encode/decode invocations.
H A DFastInfosetStreamSOAPCodec.java110 public void decode(InputStream in, String contentType, Packet response) throws IOException { method in class:FastInfosetStreamSOAPCodec
112 _soapCodec.decode(getXMLStreamReader(in)));
115 public void decode(ReadableByteChannel in, String contentType, Packet response) { method in class:FastInfosetStreamSOAPCodec
162 * vocabulary tables for multiple encode/decode invocations.
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsSecurityDescriptor.java200 // decode Windows ACE to NFSv4 AclEntry
201 private static AclEntry decode(long aceAddress) method in class:WindowsSecurityDescriptor
383 // decode each of the ACEs to AclEntry objects
386 AclEntry entry = decode(aceAddress);
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DX509Key.java94 * by using <code>decode</code>.
191 * and <code>decode</code>.
379 public void decode(InputStream in) method in class:X509Key
402 public void decode(byte[] encodedKey) throws InvalidKeyException { method in class:X509Key
403 decode(new ByteArrayInputStream(encodedKey));
420 decode(stream);
/openjdk7/jdk/src/share/classes/sun/net/idn/
H A DPunycode.java331 public static StringBuffer decode(StringBuffer src, boolean[] caseFlags) method in class:Punycode
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DISO_8859_1.java124 public int decode(byte[] src, int sp, int len, char[] dst) { method in class:ISO_8859_1.Decoder
H A DSingleByte.java74 char c = decode(sa[sp]);
89 char c = decode(src.get());
110 private final char decode(int b) { method in class:SingleByte.Decoder
119 public int decode(byte[] src, int sp, int len, char[] dst) { method in class:SingleByte.Decoder
124 dst[dp] = decode(src[sp++]);
H A DUS_ASCII.java137 public int decode(byte[] src, int sp, int len, char[] dst) { method in class:US_ASCII.Decoder
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixUriUtils.java82 b = (byte)((decode(c1) << 4) | decode(c2));
189 // decode
190 private static int decode(char c) { method in class:UnixUriUtils
/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DTestIBMDB.java42 static char[] decode(byte[] bb, Charset cs, boolean testDirect, Time t) method in class:TestIBMDB
62 cr = dec.decode(bbf, cbf, true);
98 cr = dec.decode(bbf, cbf, true);
339 char[] cc2 = decode(bb1, cs2, false, t2);
340 char[] cc1 = decode(bb1, cs1, false, t1);
360 cc1 = decode(bb1, cs1, true, t1);
361 cc2 = decode(bb1, cs2, true, t2);
428 CoderResult cr = dec.decode(bbf, cbf, false);
/openjdk7/jdk/test/sun/nio/cs/
H A DTestEUC_TW.java41 static char[] decode(byte[] bb, Charset cs, boolean testDirect, Time t) method in class:TestEUC_TW
61 cr = dec.decode(bbf, cbf, true);
93 return dec.decode(bbf, cbf, true);
198 char[] ccO = decode(bb, cs, false, null);
204 ccO = decode(bb, cs, true, null);
250 char[] cc2 = decode(bb1, cs2, false, t2);
251 char[] cc1 = decode(bb1, cs1, false, t1);
271 cc1 = decode(bb1, cs1, true, t1);
272 cc2 = decode(bb1, cs2, true, t2);
336 CoderResult cr = dec.decode(bb
[all...]
H A DTestUTF8.java35 static char[] decode(byte[] bb, String csn, boolean testDirect) method in class:TestUTF8
48 CoderResult cr = dec.decode(bbf, cbf, true);
70 return dec.decode(bbf, cbf, true);
73 // copy/paste of the StringCoding.decode()
74 static char[] decode(Charset cs, byte[] ba, int off, int len) { method in class:TestUTF8
87 CoderResult cr = cd.decode(bb, cb, true);
163 char[] ccO = decode(bb, csn, false);
169 ccO = decode(bb, csn, true);
196 char[] ccO = decode(bb, csn, false);
200 ccO = decode(b
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
H A DInstructionDecoder.java129 public Instruction decode(byte[] bytesArray, int index, int instrStartIndex, int segmentOverride, int prefixes, X86InstructionFactory factory) { method in class:InstructionDecoder

Completed in 92 milliseconds

12345