OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DecoderException
(Results
1 - 25
of
52
) sorted by null
1
2
3
/external/sl4a/Common/src/org/apache/commons/codec/
DecoderException.java
24
* @version $Id:
DecoderException
.java 797804 2009-07-25 17:27:04Z ggregory $
26
public class
DecoderException
extends Exception {
41
public
DecoderException
() {
52
public
DecoderException
(String message) {
71
public
DecoderException
(String message, Throwable cause) {
85
public
DecoderException
(Throwable cause) {
BinaryDecoder.java
36
* @throws
DecoderException
A decoder exception is thrown
40
byte[] decode(byte[] pArray) throws
DecoderException
;
Decoder.java
41
* this decode method will throw a
DecoderException
.
47
* @throws
DecoderException
a decoder exception can
53
Object decode(Object pObject) throws
DecoderException
;
/external/apache-http/src/org/apache/commons/codec/
DecoderException.java
23
* @version $Id:
DecoderException
.java,v 1.9 2004/02/29 04:08:31 tobrien Exp $
30
public class
DecoderException
extends Exception {
33
* Creates a
DecoderException
37
public
DecoderException
(String pMessage) {
BinaryDecoder.java
40
* @throws
DecoderException
A decoder exception is thrown
44
byte[] decode(byte[] pArray) throws
DecoderException
;
Decoder.java
45
* this decode method will throw a
DecoderException
.
51
* @throws
DecoderException
a decoder exception can
57
Object decode(Object pObject) throws
DecoderException
;
StringDecoder.java
39
* @throws
DecoderException
thrown if there is
42
String decode(String pString) throws
DecoderException
;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
DecoderException.java
6
public class
DecoderException
11
DecoderException
(String msg, Throwable cause)
Base64.java
112
throw new
DecoderException
("unable to decode base64 data: " + e.getMessage(), e);
135
throw new
DecoderException
("unable to decode base64 string: " + e.getMessage(), e);
Hex.java
110
throw new
DecoderException
("exception decoding Hex data: " + e.getMessage(), e);
132
throw new
DecoderException
("exception decoding Hex string: " + e.getMessage(), e);
/external/apache-http/src/org/apache/commons/codec/binary/
Hex.java
21
import org.apache.commons.codec.
DecoderException
;
56
* @throws
DecoderException
Thrown if an odd number or illegal of characters
59
public static byte[] decodeHex(char[] data) throws
DecoderException
{
64
throw new
DecoderException
("Odd number of characters.");
87
* @throws
DecoderException
Thrown if ch is an illegal hex character
89
protected static int toDigit(char ch, int index) throws
DecoderException
{
92
throw new
DecoderException
("Illegal hexadecimal charcter " + ch + " at index " + index);
131
* @throws
DecoderException
Thrown if an odd number of characters is supplied
135
public byte[] decode(byte[] array) throws
DecoderException
{
149
* @throws
DecoderException
Thrown if an odd number of characters is supplie
[
all
...]
/external/apache-http/src/org/apache/commons/codec/net/
RFC1522Codec.java
21
import org.apache.commons.codec.
DecoderException
;
95
* @throws
DecoderException
thrown if there is an error conidition during the Decoding
101
throws
DecoderException
, UnsupportedEncodingException
107
throw new
DecoderException
("RFC 1522 violation: malformed encoded content");
113
throw new
DecoderException
("RFC 1522 violation: charset token not found");
117
throw new
DecoderException
("RFC 1522 violation: charset not specified");
122
throw new
DecoderException
("RFC 1522 violation: encoding token not found");
126
throw new
DecoderException
("This codec cannot decode " +
162
* @throws
DecoderException
A decoder exception is thrown if a Decoder encounters a
165
protected abstract byte[] doDecoding(byte[] bytes) throws
DecoderException
;
[
all
...]
BCodec.java
20
import org.apache.commons.codec.
DecoderException
;
88
protected byte[] doDecoding(byte[] bytes) throws
DecoderException
{
144
* @throws
DecoderException
147
public String decode(String value) throws
DecoderException
{
154
throw new
DecoderException
(e.getMessage());
189
* @throws
DecoderException
192
public Object decode(Object value) throws
DecoderException
{
198
throw new
DecoderException
("Objects of type "
QuotedPrintableCodec.java
24
import org.apache.commons.codec.
DecoderException
;
175
* @throws
DecoderException
178
public static final byte[] decodeQuotedPrintable(byte[] bytes) throws
DecoderException
{
190
throw new
DecoderException
("Invalid quoted-printable encoding");
194
throw new
DecoderException
("Invalid quoted-printable encoding");
231
* @throws
DecoderException
234
public byte[] decode(byte[] bytes) throws
DecoderException
{
275
* @throws
DecoderException
280
public String decode(String pString, String charset) throws
DecoderException
, UnsupportedEncodingException {
294
* @throws
DecoderException
[
all
...]
URLCodec.java
25
import org.apache.commons.codec.
DecoderException
;
157
* @throws
DecoderException
Thrown if URL decoding is unsuccessful
160
throws
DecoderException
175
throw new
DecoderException
("Invalid URL encoding");
179
throw new
DecoderException
("Invalid URL encoding");
208
* @throws
DecoderException
Thrown if URL decoding is unsuccessful
210
public byte[] decode(byte[] bytes) throws
DecoderException
{
265
* @throws
DecoderException
Thrown if URL decoding is unsuccessful
270
throws
DecoderException
, UnsupportedEncodingException
286
* @throws
DecoderException
Thrown if URL decoding is unsuccessfu
[
all
...]
QCodec.java
22
import org.apache.commons.codec.
DecoderException
;
152
protected byte[] doDecoding(byte[] bytes) throws
DecoderException
{
227
* @throws
DecoderException
230
public String decode(String pString) throws
DecoderException
{
237
throw new
DecoderException
(e.getMessage());
272
* @throws
DecoderException
275
public Object decode(Object pObject) throws
DecoderException
{
281
throw new
DecoderException
("Objects of type "
/frameworks/base/tests/HierarchyViewerTest/src/com/android/test/hierarchyviewer/
Decoder.java
61
throw new
DecoderException
(sig, mBuf.position() - 1);
78
throw new
DecoderException
("Expected short key, got " + o.getClass());
92
public static class
DecoderException
extends RuntimeException {
93
public
DecoderException
(byte seen, int pos) {
97
public
DecoderException
(String msg) {
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.codec_1.3.0.v20100518-1140.jar
/prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.3/
commons-codec-1.3.jar
/external/owasp/sanitizer/lib/commons-codec-1.4/
commons-codec-1.4.jar
/prebuilts/devtools/tools/lib/
commons-codec-1.4.jar
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.apache.commons.codec_1.4.0.v201209201156.jar
/prebuilts/tools/common/http-client/
commons-codec-1.4.jar
/prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.4/
commons-codec-1.4.jar
/prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.apache.commons.codec_1.4.0.v201209201156.jar
Completed in 278 milliseconds
1
2
3