/openjdk7/jdk/src/share/classes/sun/nio/cs/ |
H A D | ArrayDecoder.java | 34 int decode(byte[] src, int off, int len, char[] dst); method in interface:ArrayDecoder
|
/openjdk7/hotspot/test/compiler/7184394/ |
H A D | TestAESDecode.java | 38 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 D | ByteElementHandler.java | 36 * <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 D | IntElementHandler.java | 36 * <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 D | LongElementHandler.java | 36 * <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 D | ShortElementHandler.java | 36 * <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 D | URLDecoderArgs.java | 27 * @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 D | EncodeDecode.java | 35 String decStr = URLDecoder.decode(encStr);
|
/openjdk7/hotspot/src/share/vm/compiler/ |
H A D | disassembler.hpp | 62 // 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 D | IllegalInstructionDecoder.java | 30 Instruction decode(int instruction, SPARCInstructionFactory factory) { method in class:IllegalInstructionDecoder
|
H A D | UnimpDecoder.java | 30 Instruction decode(int instruction, SPARCInstructionFactory factory) { method in class:UnimpDecoder
|
H A D | FPopDecoder.java | 32 Instruction decode(int instruction, SPARCInstructionFactory factory) { method in class:FPopDecoder 36 : decoder.decode(instruction, factory);
|
H A D | V9FMOVrDecoder.java | 40 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 D | CallDecoder.java | 30 Instruction decode(int instruction, SPARCInstructionFactory factory) { method in class:CallDecoder
|
H A D | FloatDecoder.java | 59 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 D | TrapDecoder.java | 39 Instruction decode(int instruction, SPARCInstructionFactory factory) { method in class:TrapDecoder
|
/openjdk7/jdk/src/share/classes/com/sun/pept/encoding/ |
H A D | Decoder.java | 56 public void decode(MessageInfo messageInfo); method in interface:Decoder
|
/openjdk7/jdk/src/share/classes/com/sun/beans/editors/ |
H A D | IntegerEditor.java | 39 setValue((text == null) ? null : Integer.decode(text));
|
/openjdk7/hotspot/src/os/bsd/vm/ |
H A D | decoder_machO.hpp | 42 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 D | decoder_elf.hpp | 45 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 D | decoder.hpp | 46 // 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 D | StreamSOAPCodec.java | 52 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 D | Disassembler.java | 44 public abstract void decode(InstructionVisitor visitor); method in class:Disassembler
|
/openjdk7/jdk/src/share/classes/java/security/ |
H A D | Certificate.java | 43 * 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 D | SnmpSecurityParameters.java | 47 void decode(byte[] params) throws SnmpStatusException; method in interface:SnmpSecurityParameters
|