Searched defs:decode (Results 1 - 25 of 123) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/java/net/
H A DURLDecoder.java63 * The encoding scheme used to decode these characters may be specified,
88 * @param s the <code>String</code> to decode
90 * default encoding. Instead, use the decode(String,String) method
95 public static String decode(String s) { method in class:URLDecoder
100 str = decode(s, dfltEncName);
121 * @param s the <code>String</code> to decode
132 public static String decode(String s, String enc) method in class:URLDecoder
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DCallDecoder.java30 Instruction decode(int instruction, SPARCInstructionFactory factory) { method in class:CallDecoder
H A DCoprocessorDecoder.java35 Instruction decode(int instruction, SPARCInstructionFactory factory) { method in class:CoprocessorDecoder
H A DIllegalInstructionDecoder.java30 Instruction decode(int instruction, SPARCInstructionFactory factory) { method in class:IllegalInstructionDecoder
H A DSethiDecoder.java30 Instruction decode(int instruction, SPARCInstructionFactory factory) { method in class:SethiDecoder
H A DUnimpDecoder.java30 Instruction decode(int instruction, SPARCInstructionFactory factory) { method in class:UnimpDecoder
H A DV9CCBranchDecoder.java32 Instruction decode(int instruction, SPARCInstructionFactory factory) { method in class:V9CCBranchDecoder
H A DV9DoneRetryDecoder.java31 Instruction decode(int instruction, SPARCInstructionFactory factory) { method in class:V9DoneRetryDecoder
H A DV9FlushwDecoder.java31 Instruction decode(int instruction, SPARCInstructionFactory factory) { method in class:V9FlushwDecoder
H A DV9PopcDecoder.java31 Instruction decode(int instruction, SPARCInstructionFactory factory) { method in class:V9PopcDecoder
H A DV9RdprDecoder.java30 Instruction decode(int instruction, SPARCInstructionFactory factory) { method in class:V9RdprDecoder
H A DV9ReadDecoder.java31 Instruction decode(int instruction, SPARCInstructionFactory factory) { method in class:V9ReadDecoder
H A DV9SavedRestoredDecoder.java31 Instruction decode(int instruction, SPARCInstructionFactory factory) { method in class:V9SavedRestoredDecoder
H A DV9WriteDecoder.java31 Instruction decode(int instruction, SPARCInstructionFactory factory) { method in class:V9WriteDecoder
H A DV9WrprDecoder.java30 Instruction decode(int instruction, SPARCInstructionFactory factory) { method in class:V9WrprDecoder
H A DFPopDecoder.java32 Instruction decode(int instruction, SPARCInstructionFactory factory) { method in class:FPopDecoder
36 : decoder.decode(instruction, factory);
H A DFormat3ADecoder.java41 Instruction decode(int instruction, SPARCInstructionFactory factory) { method in class:Format3ADecoder
H A DReadWriteDecoder.java40 Instruction decode(int instruction, SPARCInstructionFactory factory) { method in class:ReadWriteDecoder
H A DRegisterDecoder.java59 static SPARCRegister decode(int dataType, int regNum) { method in class:RegisterDecoder
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DSnmpSecurityParameters.java47 void decode(byte[] params) throws SnmpStatusException; method in interface:SnmpSecurityParameters
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/url/
H A DUrlUtil.java46 public static final String decode(String s) throws MalformedURLException { method in class:UrlUtil
48 return decode(s, "8859_1");
64 public static final String decode(String s, String enc) method in class:UrlUtil
67 return URLDecoder.decode(s, enc);
/openjdk7/jdk/src/share/classes/com/sun/pept/encoding/
H A DDecoder.java56 public void decode(MessageInfo messageInfo); method in interface:Decoder
/openjdk7/hotspot/src/share/vm/utilities/
H A Ddecoder_elf.cpp37 bool ElfDecoder::decode(address addr, char *buf, int buflen, int* offset, const char* filepath) { function in class:ElfDecoder
46 if (!file->decode(addr, buf, buflen, offset)) {
/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/agent/src/share/classes/sun/jvm/hotspot/asm/
H A DDisassembler.java44 public abstract void decode(InstructionVisitor visitor); method in class:Disassembler

Completed in 70 milliseconds

12345