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

1 2 3 4 5 6 7 8 91011>>

  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/io/
UnsupportedEncodingException.java 19 public class UnsupportedEncodingException extends IOException {
20 public UnsupportedEncodingException () {
24 public UnsupportedEncodingException (String s) {
  /libcore/ojluni/src/main/java/java/io/
UnsupportedEncodingException.java 33 public class UnsupportedEncodingException
39 * Constructs an UnsupportedEncodingException without a detail message.
41 public UnsupportedEncodingException() {
46 * Constructs an UnsupportedEncodingException with a detail message.
49 public UnsupportedEncodingException(String s) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
ISOCharsetDecoderTest.java 19 import java.io.UnsupportedEncodingException;
46 ByteBuffer getUnmappedByteBuffer() throws UnsupportedEncodingException {
52 ByteBuffer getMalformedByteBuffer() throws UnsupportedEncodingException {
57 ByteBuffer getExceptionByteArray() throws UnsupportedEncodingException {
GBCharsetDecoderTest.java 19 import java.io.UnsupportedEncodingException;
48 ByteBuffer getUnmappedByteBuffer() throws UnsupportedEncodingException {
52 ByteBuffer getMalformedByteBuffer() throws UnsupportedEncodingException {
60 ByteBuffer getExceptionByteArray() throws UnsupportedEncodingException {
UTF16BECharsetDecoderTest.java 19 import java.io.UnsupportedEncodingException;
48 ByteBuffer getUnmappedByteBuffer() throws UnsupportedEncodingException {
53 ByteBuffer getMalformedByteBuffer() throws UnsupportedEncodingException {
64 ByteBuffer getExceptionByteArray() throws UnsupportedEncodingException {
UTF16LECharsetDecoderTest.java 19 import java.io.UnsupportedEncodingException;
48 ByteBuffer getUnmappedByteBuffer() throws UnsupportedEncodingException {
53 ByteBuffer getMalformedByteBuffer() throws UnsupportedEncodingException {
64 ByteBuffer getExceptionByteArray() throws UnsupportedEncodingException {
UTF16CharsetDecoderTest.java 19 import java.io.UnsupportedEncodingException;
70 throws CharacterCodingException, UnsupportedEncodingException {
77 throws CharacterCodingException, UnsupportedEncodingException {
84 UnsupportedEncodingException {
98 ByteBuffer getUnmappedByteBuffer() throws UnsupportedEncodingException {
102 ByteBuffer getMalformedByteBuffer() throws UnsupportedEncodingException {
115 ByteBuffer getExceptionByteArray() throws UnsupportedEncodingException {
UTFCharsetDecoderTest.java 19 import java.io.UnsupportedEncodingException;
48 ByteBuffer getUnmappedByteBuffer() throws UnsupportedEncodingException {
52 ByteBuffer getMalformedByteBuffer() throws UnsupportedEncodingException {
60 ByteBuffer getExceptionByteArray() throws UnsupportedEncodingException {
ASCCharsetDecoderTest.java 19 import java.io.UnsupportedEncodingException;
68 ByteBuffer getExceptionByteArray() throws UnsupportedEncodingException {
UTF8CharsetTest.java 19 import java.io.UnsupportedEncodingException;
56 public void test_surrogate() throws UnsupportedEncodingException {
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
Ascii.java 18 import java.io.UnsupportedEncodingException;
31 } catch (UnsupportedEncodingException e) {
43 } catch (UnsupportedEncodingException e) {
Utf8.java 18 import java.io.UnsupportedEncodingException;
31 } catch (UnsupportedEncodingException e) {
43 } catch (UnsupportedEncodingException e) {
55 } catch (UnsupportedEncodingException e) {
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/provider/cert/
CertFactoryTestData.java 24 import java.io.UnsupportedEncodingException;
297 public static byte[] getCertPathPKCS7Encoding() throws UnsupportedEncodingException {
301 public static byte[] getCertPathPkiPathEncoding() throws UnsupportedEncodingException {
305 public static byte[] getCertEncoding() throws UnsupportedEncodingException {
309 public static byte[] getBase64CertEncoding() throws UnsupportedEncodingException {
313 public static byte[] getBase64CRLEncoding() throws UnsupportedEncodingException {
317 public static byte[] getCRLEncoding() throws UnsupportedEncodingException {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
UnsupportedEncodingExceptionTest.java 22 import java.io.UnsupportedEncodingException;
27 * java.io.UnsupportedEncodingException#UnsupportedEncodingException()
30 // Test for method java.io.UnsupportedEncodingException()
33 } catch (UnsupportedEncodingException e) {
41 * java.io.UnsupportedEncodingException#UnsupportedEncodingException(java.lang.String)
45 // java.io.UnsupportedEncodingException(java.lang.String)
48 } catch (UnsupportedEncodingException e) {
  /external/glide/library/src/main/java/com/bumptech/glide/load/
Key.java 3 import java.io.UnsupportedEncodingException;
24 void updateDiskCacheKey(MessageDigest messageDigest) throws UnsupportedEncodingException;
  /external/glide/library/src/main/java/com/bumptech/glide/signature/
EmptySignature.java 5 import java.io.UnsupportedEncodingException;
23 public void updateDiskCacheKey(MessageDigest messageDigest) throws UnsupportedEncodingException {
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Credentials.java 18 import java.io.UnsupportedEncodingException;
33 } catch (UnsupportedEncodingException e) {
  /external/apache-http/src/org/apache/http/util/
EncodingUtils.java 33 import java.io.UnsupportedEncodingException;
80 } catch (UnsupportedEncodingException e) {
122 } catch (UnsupportedEncodingException e) {
141 } catch (UnsupportedEncodingException e) {
164 } catch (UnsupportedEncodingException e) {
  /external/snakeyaml/src/test/java/biz/source_code/base64Coder/
Base64CoderTest.java 18 import java.io.UnsupportedEncodingException;
26 public void testDecode() throws UnsupportedEncodingException {
34 public void testFailure1() throws UnsupportedEncodingException {
44 public void testFailure2() throws UnsupportedEncodingException {
65 private void check(String text, String encoded) throws UnsupportedEncodingException {
  /external/apache-http/src/org/apache/http/client/entity/
UrlEncodedFormEntity.java 33 import java.io.UnsupportedEncodingException;
57 * @throws UnsupportedEncodingException if the encoding isn't supported
61 final String encoding) throws UnsupportedEncodingException {
72 * @throws UnsupportedEncodingException if the default encoding isn't supported
75 final List <? extends NameValuePair> parameters) throws UnsupportedEncodingException {
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/data/
CRC64Test.java 16 import java.io.UnsupportedEncodingException;
34 * @throws UnsupportedEncodingException
37 public void test1() throws UnsupportedEncodingException {
45 * @throws UnsupportedEncodingException
58 * @throws UnsupportedEncodingException
61 public void test3() throws UnsupportedEncodingException {
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/
UrlEscapeFunction.java 24 import java.io.UnsupportedEncodingException;
39 } catch (UnsupportedEncodingException e) {
49 } catch (UnsupportedEncodingException e) {
  /external/icu/android_icu4j/src/main/java/android/icu/impl/data/
ResourceReader.java 16 import java.io.UnsupportedEncodingException;
56 * @exception UnsupportedEncodingException if
60 throws UnsupportedEncodingException {
81 * @exception UnsupportedEncodingException if
85 throws UnsupportedEncodingException {
113 catch (UnsupportedEncodingException e) {
140 } catch (UnsupportedEncodingException e) {}
223 } catch (UnsupportedEncodingException e) {}
236 private void _reset() throws UnsupportedEncodingException {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/data/
ResourceReader.java 15 import java.io.UnsupportedEncodingException;
54 * @exception UnsupportedEncodingException if
58 throws UnsupportedEncodingException {
79 * @exception UnsupportedEncodingException if
83 throws UnsupportedEncodingException {
111 catch (UnsupportedEncodingException e) {
138 } catch (UnsupportedEncodingException e) {}
221 } catch (UnsupportedEncodingException e) {}
234 private void _reset() throws UnsupportedEncodingException {
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
OriginalKey.java 5 import java.io.UnsupportedEncodingException;
50 public void updateDiskCacheKey(MessageDigest messageDigest) throws UnsupportedEncodingException {

Completed in 1237 milliseconds

1 2 3 4 5 6 7 8 91011>>