/external/apache-http/src/org/apache/commons/codec/binary/ |
D | Hex.java | 21 import org.apache.commons.codec.DecoderException; 59 public static byte[] decodeHex(char[] data) throws DecoderException { in decodeHex() 64 throw new DecoderException("Odd number of characters."); in decodeHex() 89 protected static int toDigit(char ch, int index) throws DecoderException { in toDigit() 92 throw new DecoderException("Illegal hexadecimal charcter " + ch + " at index " + index); in toDigit() 135 public byte[] decode(byte[] array) throws DecoderException { in decode() 153 public Object decode(Object object) throws DecoderException { in decode() 158 throw new DecoderException(e.getMessage()); in decode()
|
D | BinaryCodec.java | 21 import org.apache.commons.codec.DecoderException; 116 public Object decode(Object ascii) throws DecoderException { in decode() 129 throw new DecoderException("argument not a byte array"); in decode()
|
D | Base64.java | 21 import org.apache.commons.codec.DecoderException; 210 public Object decode(Object pObject) throws DecoderException { in decode() 212 throw new DecoderException("Parameter supplied to Base64 decode is not a byte[]"); in decode()
|
/external/apache-http/src/org/apache/commons/codec/net/ |
D | RFC1522Codec.java | 21 import org.apache.commons.codec.DecoderException; 101 throws DecoderException, UnsupportedEncodingException in decodeText() 107 throw new DecoderException("RFC 1522 violation: malformed encoded content"); in decodeText() 113 throw new DecoderException("RFC 1522 violation: charset token not found"); in decodeText() 117 throw new DecoderException("RFC 1522 violation: charset not specified"); in decodeText() 122 throw new DecoderException("RFC 1522 violation: encoding token not found"); in decodeText() 126 throw new DecoderException("This codec cannot decode " + in decodeText() 165 protected abstract byte[] doDecoding(byte[] bytes) throws DecoderException; in doDecoding()
|
D | QuotedPrintableCodec.java | 24 import org.apache.commons.codec.DecoderException; 178 public static final byte[] decodeQuotedPrintable(byte[] bytes) throws DecoderException { in decodeQuotedPrintable() 190 throw new DecoderException("Invalid quoted-printable encoding"); in decodeQuotedPrintable() 194 throw new DecoderException("Invalid quoted-printable encoding"); in decodeQuotedPrintable() 234 public byte[] decode(byte[] bytes) throws DecoderException { in decode() 280 …public String decode(String pString, String charset) throws DecoderException, UnsupportedEncodingE… in decode() 300 public String decode(String pString) throws DecoderException { in decode() 307 throw new DecoderException(e.getMessage()); in decode() 346 public Object decode(Object pObject) throws DecoderException { in decode() 354 throw new DecoderException("Objects of type " in decode()
|
D | URLCodec.java | 25 import org.apache.commons.codec.DecoderException; 160 throws DecoderException in decodeUrl() 175 throw new DecoderException("Invalid URL encoding"); in decodeUrl() 179 throw new DecoderException("Invalid URL encoding"); in decodeUrl() 210 public byte[] decode(byte[] bytes) throws DecoderException { in decode() 270 throws DecoderException, UnsupportedEncodingException in decode() 290 public String decode(String pString) throws DecoderException { in decode() 297 throw new DecoderException(e.getMessage()); in decode() 335 public Object decode(Object pObject) throws DecoderException { in decode() 343 throw new DecoderException("Objects of type " + in decode()
|
D | BCodec.java | 20 import org.apache.commons.codec.DecoderException; 88 protected byte[] doDecoding(byte[] bytes) throws DecoderException { in doDecoding() 147 public String decode(String value) throws DecoderException { in decode() 154 throw new DecoderException(e.getMessage()); in decode() 192 public Object decode(Object value) throws DecoderException { in decode() 198 throw new DecoderException("Objects of type " in decode()
|
D | QCodec.java | 22 import org.apache.commons.codec.DecoderException; 152 protected byte[] doDecoding(byte[] bytes) throws DecoderException { in doDecoding() 230 public String decode(String pString) throws DecoderException { in decode() 237 throw new DecoderException(e.getMessage()); in decode() 275 public Object decode(Object pObject) throws DecoderException { in decode() 281 throw new DecoderException("Objects of type " in decode()
|
/external/sl4a/Common/src/org/apache/commons/codec/ |
D | DecoderException.java | 26 public class DecoderException extends Exception { class 41 public DecoderException() { in DecoderException() method in DecoderException 52 public DecoderException(String message) { in DecoderException() method in DecoderException 71 public DecoderException(String message, Throwable cause) { in DecoderException() method in DecoderException 85 public DecoderException(Throwable cause) { in DecoderException() method in DecoderException
|
D | BinaryDecoder.java | 40 byte[] decode(byte[] pArray) throws DecoderException; in decode()
|
D | Decoder.java | 53 Object decode(Object pObject) throws DecoderException; in decode()
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
D | org.apache.commons.codec_1.3.0.v20100518-1140.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
/external/owasp/sanitizer/lib/commons-codec-1.4/ |
D | commons-codec-1.4.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/apache/
org/ ... |
/external/apache-http/src/org/apache/commons/codec/ |
D | DecoderException.java | 30 public class DecoderException extends Exception { class 37 public DecoderException(String pMessage) { in DecoderException() method in DecoderException
|
D | BinaryDecoder.java | 44 byte[] decode(byte[] pArray) throws DecoderException; in decode()
|
D | Decoder.java | 57 Object decode(Object pObject) throws DecoderException; in decode()
|
D | StringDecoder.java | 42 String decode(String pString) throws DecoderException; in decode()
|
/external/robolectric/v1/lib/main/ |
D | commons-codec-1.6.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/apache/
org/ ... |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/ |
D | DecoderException.java | 6 public class DecoderException class 11 DecoderException(String msg, Throwable cause) in DecoderException() method in DecoderException
|
D | Hex.java | 110 throw new DecoderException("exception decoding Hex data: " + e.getMessage(), e); in decode() 132 throw new DecoderException("exception decoding Hex string: " + e.getMessage(), e); in decode()
|
D | Base64.java | 112 throw new DecoderException("unable to decode base64 data: " + e.getMessage(), e); in decode() 135 throw new DecoderException("unable to decode base64 string: " + e.getMessage(), e); in decode()
|
/external/sl4a/Common/src/org/apache/commons/codec/binary/ |
D | Base64Codec.java | 24 import org.apache.commons.codec.DecoderException; 704 public Object decode(Object pObject) throws DecoderException { in decode() 710 … throw new DecoderException("Parameter supplied to Base64 decode is not a byte[] or a String"); in decode()
|
/external/robolectric/v3/runtime/ |
D | android-all-4.1.2_r1-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/accessibilityservice/
android/ ... |
D | android-all-4.2.2_r1.2-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/accessibilityservice/
android/ ... |
D | android-all-4.3_r2-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/accessibilityservice/
android/ ... |