Searched refs:decode (Results 1 - 25 of 318) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DArrayDecoder.java34 int decode(byte[] src, int off, int len, char[] dst); method in interface:ArrayDecoder
/openjdk7/hotspot/test/compiler/7184394/
H A DTestAESDecode.java38 decode = dCipher.doFinal(encode, 0, encode.length);
39 compareArrays(decode, expectedDecode);
42 decode = new byte[dCipher.getOutputSize(encode.length)];
43 dCipher.doFinal(encode, 0, encode.length, decode);
/openjdk7/jdk/src/share/classes/com/sun/beans/decoder/
H A DByteElementHandler.java36 * <method name="decode" class="java.lang.Byte">
39 * which is equivalent to {@code Byte.decode("127")} in Java code.
61 return Byte.decode(argument);
H A DIntElementHandler.java36 * <method name="decode" class="java.lang.Integer">
39 * which is equivalent to {@code Integer.decode("-1")} in Java code.
61 return Integer.decode(argument);
H A DLongElementHandler.java36 * <method name="decode" class="java.lang.Long">
39 * which is equivalent to {@code Long.decode("0xFFFF")} in Java code.
61 return Long.decode(argument);
H A DShortElementHandler.java36 * <method name="decode" class="java.lang.Short">
39 * which is equivalent to {@code Short.decode("200")} in Java code.
61 return Short.decode(argument);
/openjdk7/jdk/test/java/net/URLDecoder/
H A DURLDecoderArgs.java27 * @summary java.net.URLDecoder.decode(s, enc) treats an empty encoding name as "UTF-8"
35 String s1 = URLDecoder.decode ("Hello World", null);
40 String s2 = URLDecoder.decode ("Hello World", "");
H A DEncodeDecode.java35 String decStr = URLDecoder.decode(encStr);
/openjdk7/hotspot/src/share/vm/compiler/
H A Ddisassembler.hpp62 // points to the decode function.
89 static void decode(CodeBlob *cb, outputStream* st = NULL);
90 static void decode(nmethod* nm, outputStream* st = NULL);
91 static void decode(address begin, address end, outputStream* st = NULL, CodeStrings c = CodeStrings());
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DIllegalInstructionDecoder.java30 Instruction decode(int instruction, SPARCInstructionFactory factory) { method in class:IllegalInstructionDecoder
H A DUnimpDecoder.java30 Instruction decode(int instruction, SPARCInstructionFactory factory) { method in class:UnimpDecoder
H A DFPopDecoder.java32 Instruction decode(int instruction, SPARCInstructionFactory factory) { method in class:FPopDecoder
36 : decoder.decode(instruction, factory);
H A DV9FMOVrDecoder.java40 Instruction decode(int instruction, SPARCInstructionFactory factory) { method in class:V9FMOVrDecoder
46 SPARCRegister rd = RegisterDecoder.decode(dataType, rdNum);
47 SPARCRegister rs2 = RegisterDecoder.decode(dataType, rs2Num);
H A DCallDecoder.java30 Instruction decode(int instruction, SPARCInstructionFactory factory) { method in class:CallDecoder
H A DFloatDecoder.java59 Instruction decode(int instruction, SPARCInstructionFactory factory) { method in class:FloatDecoder
66 rs1 = RegisterDecoder.decode(src1Type, rs1Num);
72 SPARCRegister rd = RegisterDecoder.decode(resultType, rdNum);
73 SPARCRegister rs2 = RegisterDecoder.decode(src2Type, rs2Num);
H A DTrapDecoder.java39 Instruction decode(int instruction, SPARCInstructionFactory factory) { method in class:TrapDecoder
/openjdk7/jdk/src/share/classes/com/sun/pept/encoding/
H A DDecoder.java56 public void decode(MessageInfo messageInfo); method in interface:Decoder
/openjdk7/jdk/src/share/classes/com/sun/beans/editors/
H A DIntegerEditor.java39 setValue((text == null) ? null : Integer.decode(text));
/openjdk7/hotspot/src/os/bsd/vm/
H A Ddecoder_machO.hpp42 virtual bool decode(address pc, char* buf, int buflen, int* offset,
44 virtual bool decode(address pc, char* buf, int buflen, int* offset, function in class:MachODecoder
/openjdk7/hotspot/src/share/vm/utilities/
H A Ddecoder_elf.hpp45 bool decode(address addr, char *buf, int buflen, int* offset, const char* filepath = NULL);
46 bool decode(address addr, char *buf, int buflen, int* offset, const void *base) { function in class:ElfDecoder
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/ws/api/pipe/
H A DStreamSOAPCodec.java52 public @NotNull Message decode(@NotNull XMLStreamReader reader); method in interface:StreamSOAPCodec
62 public @NotNull Message decode(@NotNull XMLStreamReader reader, @NotNull AttachmentSet att); method in interface:StreamSOAPCodec
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/
H A DDisassembler.java44 public abstract void decode(InstructionVisitor visitor); method in class:Disassembler
/openjdk7/jdk/src/share/classes/java/security/
H A DCertificate.java43 * decode certificates) and some types of information, such as a
99 * be decoded by the <code>decode</code> method.
110 * @see #decode
133 public abstract void decode(InputStream stream) method in interface:Certificate
141 * and <code>decode</code> methods.
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DSnmpSecurityParameters.java47 void decode(byte[] params) throws SnmpStatusException; method in interface:SnmpSecurityParameters

Completed in 511 milliseconds

1234567891011>>