HomeSort by relevance Sort by last modified time
    Searched refs:UnsupportedEncodingException (Results 1 - 25 of 194) sorted by null

1 2 3 4 5 6 7 8

  /dalvik/libcore/luni/src/main/java/java/io/
UnsupportedEncodingException.java 24 public class UnsupportedEncodingException extends IOException {
29 * Constructs a new {@code UnsupportedEncodingException} with its stack
32 public UnsupportedEncodingException() {
37 * Constructs a new {@code UnsupportedEncodingException} with its stack
43 public UnsupportedEncodingException(String detailMessage) {
  /dalvik/libcore/luni/src/test/java/tests/api/java/io/
UnsupportedEncodingExceptionTest.java 20 import java.io.UnsupportedEncodingException;
26 @TestTargetClass(UnsupportedEncodingException.class)
30 * @tests java.io.UnsupportedEncodingException#UnsupportedEncodingException()
34 method = "UnsupportedEncodingException",
40 throw new UnsupportedEncodingException();
41 fail("Test 1: UnsupportedEncodingException expected.");
42 } catch (UnsupportedEncodingException e) {
49 * @tests java.io.UnsupportedEncodingException#UnsupportedEncodingException(java.lang.String
    [all...]
  /dalvik/libcore/nio_char/src/test/java/tests/api/java/nio/charset/
ISOCharsetDecoderTest.java 21 import java.io.UnsupportedEncodingException;
50 ByteBuffer getUnmappedByteBuffer() throws UnsupportedEncodingException {
56 ByteBuffer getMalformByteBuffer() throws UnsupportedEncodingException {
61 ByteBuffer getExceptionByteArray() throws UnsupportedEncodingException {
UTF16BECharsetDecoderTest.java 21 import java.io.UnsupportedEncodingException;
54 ByteBuffer getUnmappedByteBuffer() throws UnsupportedEncodingException {
59 ByteBuffer getMalformByteBuffer() throws UnsupportedEncodingException {
70 ByteBuffer getExceptionByteArray() throws UnsupportedEncodingException {
ASCCharsetDecoderTest.java 21 import java.io.UnsupportedEncodingException;
49 ByteBuffer getUnmappedByteBuffer() throws UnsupportedEncodingException {
60 ByteBuffer getMalformByteBuffer() throws UnsupportedEncodingException {
72 ByteBuffer getExceptionByteArray() throws UnsupportedEncodingException {
GBCharsetDecoderTest.java 21 import java.io.UnsupportedEncodingException;
51 ByteBuffer getUnmappedByteBuffer() throws UnsupportedEncodingException {
55 ByteBuffer getMalformByteBuffer() throws UnsupportedEncodingException {
63 ByteBuffer getExceptionByteArray() throws UnsupportedEncodingException {
UTF16LECharsetDecoderTest.java 24 import java.io.UnsupportedEncodingException;
56 ByteBuffer getUnmappedByteBuffer() throws UnsupportedEncodingException {
61 ByteBuffer getMalformByteBuffer() throws UnsupportedEncodingException {
72 ByteBuffer getExceptionByteArray() throws UnsupportedEncodingException {
UTFCharsetDecoderTest.java 21 import java.io.UnsupportedEncodingException;
52 ByteBuffer getUnmappedByteBuffer() throws UnsupportedEncodingException {
56 ByteBuffer getMalformByteBuffer() throws UnsupportedEncodingException {
64 ByteBuffer getExceptionByteArray() throws UnsupportedEncodingException {
UTF16CharsetDecoderTest.java 24 import java.io.UnsupportedEncodingException;
142 UnsupportedEncodingException {
158 ByteBuffer getUnmappedByteBuffer() throws UnsupportedEncodingException {
162 ByteBuffer getMalformByteBuffer() throws UnsupportedEncodingException {
175 ByteBuffer getExceptionByteArray() throws UnsupportedEncodingException {
  /external/apache-http/src/org/apache/http/util/
EncodingUtils.java 33 import java.io.UnsupportedEncodingException;
75 } catch (UnsupportedEncodingException e) {
117 } catch (UnsupportedEncodingException e) {
136 } catch (UnsupportedEncodingException e) {
159 } catch (UnsupportedEncodingException e) {
  /external/apache-http/src/org/apache/http/client/entity/
UrlEncodedFormEntity.java 33 import java.io.UnsupportedEncodingException;
52 * @throws UnsupportedEncodingException if the encoding isn't supported
56 final String encoding) throws UnsupportedEncodingException {
67 * @throws UnsupportedEncodingException if the default encoding isn't supported
70 final List <? extends NameValuePair> parameters) throws UnsupportedEncodingException {
  /dalvik/libcore/luni/src/main/java/java/net/
URLDecoder.java 20 import java.io.UnsupportedEncodingException;
86 * @throws UnsupportedEncodingException
90 throws UnsupportedEncodingException {
98 throw new UnsupportedEncodingException(
118 throw (UnsupportedEncodingException) (new UnsupportedEncodingException(
121 throw (UnsupportedEncodingException) (new UnsupportedEncodingException(
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
URLEncoderTest.java 24 import java.io.UnsupportedEncodingException;
37 notes = "Regression test. Checks UnsupportedEncodingException & NullPointerException",
46 } catch (UnsupportedEncodingException e) {
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/util/
NYITest.java 27 import java.io.UnsupportedEncodingException;
46 public void testNYI() throws UnsupportedEncodingException {
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/asn1/
ASN1UTCTime.java 26 import java.io.UnsupportedEncodingException;
121 } catch (UnsupportedEncodingException e) {
ASN1StringType.java 26 import java.io.UnsupportedEncodingException;
76 } catch (UnsupportedEncodingException e) {
146 } catch (UnsupportedEncodingException e) {
  /external/proguard/src/proguard/classfile/constant/
Utf8Constant.java 26 import java.io.UnsupportedEncodingException;
102 catch (UnsupportedEncodingException ex)
130 catch (UnsupportedEncodingException ex)
157 private void switchToByteArrayRepresentation() throws UnsupportedEncodingException
170 private void switchToStringRepresentation() throws UnsupportedEncodingException
183 private byte[] getByteArrayRepresentation(String string) throws UnsupportedEncodingException
244 private String getStringRepresentation(byte[] bytes) throws UnsupportedEncodingException
279 throw new UnsupportedEncodingException("Missing UTF-8 bytes after initial byte [0x"+Integer.toHexString(b)+"] in string ["+new String(chars, 0, charIndex)+"]");
  /packages/apps/Email/src/com/android/email/mail/internet/
TextBody.java 28 import java.io.UnsupportedEncodingException;
58 catch (UnsupportedEncodingException usee) {
  /packages/apps/IM/src/com/android/im/imps/
StandardPasswordDigest.java 26 import java.io.UnsupportedEncodingException;
37 } catch (UnsupportedEncodingException e) {
  /dalvik/libcore/luni/src/test/java/tests/api/java/net/
URLDecoderTest.java 25 import java.io.UnsupportedEncodingException;
101 } catch (UnsupportedEncodingException e) {
102 fail("UnsupportedEncodingException: " + e.getMessage());
109 } catch (UnsupportedEncodingException e) {
110 fail("UnsupportedEncodingException: " + e.getMessage());
115 fail("UnsupportedEncodingException expected");
116 } catch (UnsupportedEncodingException e) {
URLEncoderTest.java 25 import java.io.UnsupportedEncodingException;
87 } catch (UnsupportedEncodingException e) {
88 fail("UnsupportedEncodingException: " + e.getMessage());
95 } catch (UnsupportedEncodingException e) {
96 fail("UnsupportedEncodingException: " + e.getMessage());
101 fail("UnsupportedEncodingException expected");
102 } catch (UnsupportedEncodingException e) {
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
OutputStreamWriterTest.java 27 import java.io.UnsupportedEncodingException;
52 } catch (UnsupportedEncodingException e) {
53 fail("Should not throw UnsupportedEncodingException");
75 } catch (UnsupportedEncodingException e) {
  /external/apache-http/src/org/apache/http/entity/
StringEntity.java 38 import java.io.UnsupportedEncodingException;
56 throws UnsupportedEncodingException {
69 throws UnsupportedEncodingException {
  /frameworks/base/core/java/com/google/android/mms/pdu/
CharacterSets.java 20 import java.io.UnsupportedEncodingException;
142 * @throws UnsupportedEncodingException
145 throws UnsupportedEncodingException {
148 throw new UnsupportedEncodingException();
158 * @throws UnsupportedEncodingException
161 throws UnsupportedEncodingException {
168 throw new UnsupportedEncodingException();
  /external/apache-http/src/org/apache/commons/codec/net/
BCodec.java 19 import java.io.UnsupportedEncodingException;
108 } catch (UnsupportedEncodingException e) {
148 } catch (UnsupportedEncodingException e) {

Completed in 2458 milliseconds

1 2 3 4 5 6 7 8